summaryrefslogtreecommitdiff
path: root/tofu
diff options
context:
space:
mode:
authorseth <[email protected]>2023-12-12 23:04:28 -0500
committerseth <[email protected]>2023-12-12 23:04:28 -0500
commit56b051278e722b96e47c92f3789283cfe3b08400 (patch)
tree6c86665463cff50811f27d64dcaadb93653a0312 /tofu
parent281113c2ccc3e889316b88592a8b33c4583166f3 (diff)
tofu: don't proxy all cf records
Diffstat (limited to 'tofu')
-rw-r--r--tofu/cloudflare/dns.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/tofu/cloudflare/dns.nix b/tofu/cloudflare/dns.nix
index 3371566..2002896 100644
--- a/tofu/cloudflare/dns.nix
+++ b/tofu/cloudflare/dns.nix
@@ -6,9 +6,8 @@
} @ args:
{
name = args.name or name;
- zone_id = "\${var.zone_id}";
+ zone_id = lib.tfRef "var.zone_id";
inherit value type;
- proxied = true;
}
// lib.optionalAttrs (type != "TXT") {proxied = true;};