autobaan/terraform/config.tf

17 lines
381 B
Terraform
Raw Normal View History

2021-11-24 15:39:28 +01:00
terraform {
backend "s3" {
encrypt = true
bucket = "cgduncan7-terraform-state-euc1"
key = "autobaan-dev"
region = "eu-central-1"
dynamodb_table = "cgduncan7-terraform-state-lock-euc1"
}
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 3.27"
}
}
required_version = ">= 1.0.0"
}