provider "aws" {
  region  = var.aws_region
  profile = "gdb-whitelist-prod"
}

# Terraform backends cannot contain interpolations
terraform {
  backend "s3" {
    bucket  = "gdb-whitelist-legacy-tfstate"
    key     = "legacy-prod/datadog/account-integration/terraform.tfstate"
    region  = "eu-west-1"
    encrypt = "true"
    profile = "gdb-whitelist-prod"
  }
}


