diff options
| author | seth <[email protected]> | 2023-12-12 23:04:28 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-12-12 23:04:28 -0500 |
| commit | 56b051278e722b96e47c92f3789283cfe3b08400 (patch) | |
| tree | 6c86665463cff50811f27d64dcaadb93653a0312 | |
| parent | 281113c2ccc3e889316b88592a8b33c4583166f3 (diff) | |
tofu: don't proxy all cf records
| -rw-r--r-- | tofu/cloudflare/dns.nix | 3 |
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;}; |
