mirror of
https://github.com/ghndrx/terraform.git
synced 2026-02-10 06:45:01 +00:00
10 lines
197 B
HCL
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...
|