infra-waku/main.tf

17 lines
491 B
Terraform
Raw Permalink Normal View History

2023-10-05 12:08:18 +00:00
/* DATA -----------------------------------------*/
terraform {
backend "consul" {
address = "https://consul.statusim.net:8400"
/* Lock to avoid syncing issues */
lock = true
/* KV store has a limit of 512KB */
gzip = true
/* WARNING This needs to be changed for every repo. */
2023-10-05 12:38:30 +00:00
path = "terraform/waku/"
2023-10-05 12:08:18 +00:00
ca_file = "ansible/files/consul-ca.crt"
cert_file = "ansible/files/consul-client.crt"
key_file = "ansible/files/consul-client.key"
}
}