infra-shards/main.tf

17 lines
493 B
Terraform
Raw Normal View History

2023-09-08 12:11:02 +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-09-18 10:00:06 +00:00
path = "terraform/shards/"
2023-09-08 12:11:02 +00:00
ca_file = "ansible/files/consul-ca.crt"
cert_file = "ansible/files/consul-client.crt"
key_file = "ansible/files/consul-client.key"
}
}