variable "aws_region_id" {
  type    = string
  default = "us-east-1"
}

variable "aws_profile" {
  type    = string
  default = "gdb-delphi-dev"
}

variable "subnets" {
  type    = list(string)
  default = ["subnet-015f8d27e29658186", "subnet-0a4b424712e12c4ce", "subnet-0eb603227f7fe846c"]
}

variable "security_groups" {
  type    = list(string)
  default = ["sg-0c4ec5bf17fc2cc72"]
}

variable "ec2_key_pair" {
  type    = string
  default = "Dev-Apollo-default"
}

variable "ce_image" {
  type = string
  #  default = "ami-0f161e6034a6262d8"
  default = ""
}

variable "platform" {
  type = map(string)

  default = {
    name                = "Apollo"
    prefix              = "dev"
    environment         = "Development"
    short_platform_name = "APL"
  }
}
