variable "aws_profile" {
  type        = string
  description = "The name of the AWS profile as set in the shared credentials file."
  default     = "gdb-delphi-dev"
}

variable "aws_region_id" {
  type        = string
  description = "The id of the region in AWS"
  default     = "eu-west-1"
}

variable "platform" {
  type = map(string)

  default = {
    name                = "Apollo"
    prefix              = "prod"
    environment         = "Production"
    short_platform_name = "APL"
  }
}

variable "vpc" {
  type        = map(string)
  description = "vpc attributes"

  default = {
    cidr_second_octet = "0"
  }
}

variable "public_subnets" {
  type    = list(number)
  default = [0, 1, 2]
}

variable "key_pair_name" {
  type    = string
  default = "prod-apollo-eu"
}
