Files
2021-05-27 15:54:43 -07:00

27 lines
643 B
HCL

terraform {
# Assumes s3 bucket and dynamo DB table already set up
# See /code/03-basics/aws-backend
backend "s3" {
bucket = "devops-directive-tf-state"
key = "07-managing-multiple-environments/global/terraform.tfstate"
region = "us-east-1"
dynamodb_table = "terraform-state-locking"
encrypt = true
}
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 3.0"
}
}
}
provider "aws" {
region = "us-east-1"
}
# Route53 zone is shared across staging and production
resource "aws_route53_zone" "primary" {
name = "mysuperawesomesite.com"
}