/* DATA -----------------------------------------*/ terraform { backend "consul" { address = "https://consul.statusim.net:8400" lock = true /* KV store has a limit of 512KB */ gzip = true /* WARNING This needs to be changed for every repo. */ path = "terraform/faucet/" ca_file = "ansible/files/consul-ca.crt" cert_file = "ansible/files/consul-client.crt" key_file = "ansible/files/consul-client.key" } } /* PLUMBING -------------------------------------*/ /* CloudFlare Zone IDs required for records */ data "cloudflare_zones" "active" { filter { name = "status.im" status = "active" } }