cluster.fun/terraform/state.tf

11 lines
326 B
Terraform
Raw Normal View History

2020-04-25 19:03:46 +00:00
terraform {
backend "s3" {
bucket = "cluster.fun-tfstate"
key = "state.tfstate"
region = "fr-par"
endpoint = "https://s3.fr-par.scw.cloud"
skip_credentials_validation = true
skip_region_validation = true
}
}