provider "aws" {
  profile = var.aws_profile
  region  = var.aws_region_id
}

provider "aws" {
  alias   = "gdb-delphi-dev"
  profile = "gdb-delphi-dev"
  region  = var.aws_region_id
}

provider "aws" {
  alias   = "gdb-delphi-prod"
  profile = "gdb-delphi-prod"
  region  = var.aws_region_id
}

provider "aws" {
  alias   = "gdb-infra-prod"
  profile = "gdb-infra-prod"
  region  = var.aws_region_id
}

provider "aws" {
  alias   = "gdb-core-dev"
  profile = "gdb-core-dev"
  region  = var.aws_region_id
}

provider "aws" {
  alias   = "gdb-artistapp-prod"
  profile = "gdb-artistapp-prod"
  region  = var.aws_region_id
}

provider "aws" {
  alias   = "gdb-apollo-dev"
  profile = "gdb-apollo-dev"
  region  = var.aws_region_id
}
