slopedme-terrraform/route53/provider.tf
Conner McCall c983638571 change: initial commit
contains sloped.me domain records and
backend configuration
2020-08-20 07:33:33 -05:00

15 lines
342 B
HCL

provider "aws" {
region = var.AWS_REGION
profile = "cw-terraform"
}
terraform {
backend "s3" {
profile = "cw-terraform"
bucket = "slopedme-tf-state"
encrypt = true
dynamodb_table = "terraform-dynamodb-table"
region = "us-east-1"
key = "route53/terraform.tfstate"
}
}