blob: b83c53fc646107748b51ddf144b9d572f9e21f4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
terraform {
backend "s3" {
bucket = "org-buetow-tfstate"
key = "org-buetow-elb/terraform.tfstate"
region = "eu-central-1"
# Optional, if you enabled server-side encryption
encrypt = true
}
}
provider "aws" {
region = "eu-central-1" # or your preferred AWS region
}
|