provider "aws" {
  region = "us-east-1"
}

# Terraform backends cannot contain interpolations
terraform {
  backend "s3" {
    bucket  = "dev-orcd-terraform-state"
    key     = "dev/terraform-route53/terraform.tfstate"
    region  = "us-east-1"
    encrypt = "true"
  }
}

module "theorcharddotcom" {
  source    = "../"
  zone_type = "private"
  name      = "theorchard.com"

  vpcid = "vpc-34dbfd51"
}

module "qaorchdotcom" {
  source    = "../"
  zone_type = "private"
  name      = "qaorch.com"

  vpcid = "vpc-34dbfd51"
}

