infrastructure/terraform/backends.tf

9 lines
142 B
Terraform
Raw Normal View History

2020-02-21 22:15:32 +00:00
terraform {
backend "s3" {
bucket = "0rng-terraform"
key = "terraform.tfstate"
encrypt = true
region = "eu-west-2"
}
}