Files
proxy/terraform/provider.tf
2025-02-18 20:55:13 -05:00

13 lines
233 B
HCL

terraform {
# The backend is stored in an S3 bucket.
backend "s3" {
bucket = "tsuga-sieboldii"
key = "proxy"
region = "us-east-1"
}
}
# Access AWS through the IaC roles.
provider "aws" {
region = "us-east-1"
}