cloudflare dns
This commit is contained in:
21
terraform/cloudflare/variable_definitions.tf
Normal file
21
terraform/cloudflare/variable_definitions.tf
Normal 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 = []
|
||||
}
|
Reference in New Issue
Block a user