Files
terraform/aws/backend/main.tf
2023-11-17 12:56:07 -08:00

10 lines
197 B
HCL

terraform {
backend "s3" {
bucket = "my-tf-bucket-ghndrx"
key = "terraform.tfstate"
region = "us-west-2"
}
}
# Rest of your Terraform configuration goes here...