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

terraform {
  backend "s3" {
    bucket  = "shared-orcd-terraform-state"
    key     = "prod/dev-box/ratoui/terraform.tfstate"
    region  = "us-east-1"
    encrypt = "true"
  }
}

module "dev_box" {
  source = "git@github.com:theorchard/terraform-dev-box.git?ref=2.1.1"

  providers = {
    aws.dns = aws
  }

  dev_box_id          = "ratoui"
  owner_email_address = "ratoui@sonymusic-pde.com"
  owner_name          = "Raed Atoui"
  application_family  = "user-platform"
}

