summaryrefslogtreecommitdiff
path: root/tf/cloudflare/tunnels.nix
blob: bea9811a0ae891bfe397b13b6833814e41bd9f96 (plain)
1
2
3
4
5
6
7
8
9
10
11
{lib, ...}: {
  data.cloudflare_tunnel =
    lib.genAttrs
    [
      "atlas-nginx"
    ]
    (name: {
      inherit name;
      account_id = lib.tfRef "var.account_id";
    });
}