mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-05 13:08:52 +07:00
38 lines
601 B
HCL
38 lines
601 B
HCL
variable "cloudflare_email" {
|
|
type = string
|
|
}
|
|
|
|
variable "cloudflare_api_key" {
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "cloudflare_account_id" {
|
|
type = string
|
|
}
|
|
|
|
variable "zerotier_central_token" {
|
|
type = string
|
|
}
|
|
|
|
variable "ntfy" {
|
|
type = object({
|
|
url = string
|
|
username = string
|
|
password = string
|
|
})
|
|
|
|
sensitive = true
|
|
}
|
|
|
|
variable "backup_bucket" {
|
|
type = object({
|
|
name = string
|
|
url = string
|
|
bucket = string
|
|
region = string
|
|
access_key_id = string
|
|
secret_access_key = string
|
|
})
|
|
}
|