Skip to content

Commit

Permalink
fix: TF deps
Browse files Browse the repository at this point in the history
  • Loading branch information
lholota committed Nov 13, 2024
1 parent 0c43d21 commit d079752
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/cloudflare-apps.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resource "cloudflare_record" "apps" {
zone_id = data.sops_file.secrets.data["cloudflare_zone_id"]
name = "${each.value.subdomain}${var.cloudflare_apps_subdomain_suffix}.${var.cloudflare_apps_root_domain}"
type = "CNAME"
value = each.value.tunnel == "backup" ? cloudflare_tunnel.backup.cname : cloudflare_tunnel.default.cname
value = cloudflare_tunnel.default.cname
ttl = 1
proxied = true
}
Expand Down

0 comments on commit d079752

Please sign in to comment.