11 lines
220 B
HCL
11 lines
220 B
HCL
terraform {
|
|
# The backend is stored in an S3 bucket.
|
|
backend "s3" {}
|
|
}
|
|
|
|
# Access AWS through the IaC roles.
|
|
provider "aws" {
|
|
region = var.aws_region
|
|
access_key = var.aws_access
|
|
secret_key = var.aws_secret
|
|
} |