30 lines
860 B
HCL
30 lines
860 B
HCL
/* DERIVED --------------------------------------*/
|
|
provider "digitalocean" {
|
|
token = var.digitalocean_token
|
|
spaces_access_id = var.digitalocean_spaces_id
|
|
spaces_secret_key = var.digitalocean_spaces_key
|
|
}
|
|
|
|
provider "cloudflare" {
|
|
email = var.cloudflare_email
|
|
api_key = var.cloudflare_token
|
|
account_id = var.cloudflare_account
|
|
}
|
|
|
|
/* 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. */
|
|
path = "terraform/nim-waku/"
|
|
ca_file = "ansible/files/consul-ca.crt"
|
|
cert_file = "ansible/files/consul-client.crt"
|
|
key_file = "ansible/files/consul-client.key"
|
|
}
|
|
}
|