2021-12-25 02:34:49 +07:00
|
|
|
variable "cloudflare_email" {
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "cloudflare_api_key" {
|
2021-12-25 02:50:18 +07:00
|
|
|
type = string
|
2021-12-25 02:34:49 +07:00
|
|
|
sensitive = true
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "cloudflare_account_id" {
|
|
|
|
type = string
|
|
|
|
}
|
2022-08-27 13:24:57 +07:00
|
|
|
|
2024-01-21 14:43:26 +07:00
|
|
|
variable "ntfy" {
|
|
|
|
type = object({
|
2024-01-25 00:44:46 +07:00
|
|
|
url = string
|
|
|
|
topic = string
|
2024-01-21 14:43:26 +07:00
|
|
|
})
|
|
|
|
|
|
|
|
sensitive = true
|
|
|
|
}
|
2024-03-14 20:07:27 +07:00
|
|
|
|
|
|
|
variable "extra_secrets" {
|
|
|
|
type = map(string)
|
|
|
|
description = "Key-value pairs of extra secrets that cannot be randomly generated (e.g. third party API tokens)"
|
|
|
|
sensitive = true
|
|
|
|
default = {}
|
|
|
|
}
|