Describe the Feature
There's no "tags" in record:
|
resource "cloudflare_record" "default" { |
|
for_each = local.records |
|
|
|
zone_id = local.zone_id |
|
name = each.value.name |
|
type = each.value.type |
|
value = each.value.value |
|
priority = lookup(each.value, "priority", null) |
|
proxied = lookup(each.value, "proxied", false) |
|
ttl = lookup(each.value, "ttl", 1) |
|
} |
Extra
Also, I tried to pass context.tags via atmos config, and then it totally blew up
components:
terraform:
cloudflare-zone:
vars:
context:
tags:
- "cloudflare-terraform"
Describe the Feature
There's no "tags" in record:
terraform-cloudflare-zone/main.tf
Lines 34 to 44 in 3073cc3
Extra
Also, I tried to pass context.tags via atmos config, and then it totally blew up