provider "aws" {
  region = var.aws_region
}

terraform {
  backend "s3" {
    bucket  = "prod-global-ds-terraform-state"
    key     = "atlantis/terraform.tfstate"
    region  = "eu-central-1"
    encrypt = "true"
  }
}

module "cross_account_access" {
  source            = "git@github.com:theorchard/terraform-atlantis.git//modules?ref=3.4.52"
  environment       = "prod"
  terrastate_bucket = "prod-global-ds-terraform-state"
}
