/ main.tf
main.tf
1 /* DATA -----------------------------------------*/ 2 3 terraform { 4 backend "consul" { 5 address = "https://consul.statusim.net:8400" 6 /* Lock to avoid syncing issues */ 7 lock = true 8 /* KV store has a limit of 512KB */ 9 gzip = true 10 /* WARNING This needs to be changed for every repo. */ 11 path = "terraform/nim-waku/" 12 ca_file = "ansible/files/consul-ca.crt" 13 cert_file = "ansible/files/consul-client.crt" 14 key_file = "ansible/files/consul-client.key" 15 } 16 }