cloudflare dns

This commit is contained in:
2024-10-23 00:22:32 -04:00
parent bad78681c6
commit fe38bebbd5
5 changed files with 75 additions and 0 deletions

View File

@ -0,0 +1,21 @@
variable "api_token" {
description = "Cloudflare account API token"
type = string
default = ""
sensitive = true
}
variable "account_name" {
description = "Cloudflare account name"
type = string
default = ""
}
variable "a_records" {
description = "DNS A records to create"
type = list(object({
name = string
content = string
}))
default = []
}