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

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

variable "platform" {
  type = map(string)

  default = {
    name                = "Core"
    prefix              = "uat"
    environment         = "UAT"
    short_platform_name = "CORE"
  }
}

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

  default = {
    cidr_second_octet = "93"
  }
}

variable "public_subnets" {
  type    = list(number)
  default = [10, 11, 12]
}

variable "private_subnets" {
  type    = list(number)
  default = [13, 14, 15]
}

variable "key_pair_name" {
  type    = string
  default = "UAT-Core-default"
}

variable "projectgroup_whitelist" {
  type        = list(string)
  description = "List of users"
  default     = []
}

variable "vpn_servers" {
  type        = list(string)
  description = "List of CIDR's of vpn servers"
  default     = []
}

variable "nat_whitelist" {
  type        = list(string)
  description = "List of external CIDRs with access to HTTPS port"
  default     = []
}

variable "web_whitelist" {
  type        = list(string)
  description = "List of external CIDRs with access to HTTPS port"
  default     = []
}

variable "sme_proxy_peering_id" {
  type        = string
  description = "ID of peering connection created from Cloudops account to ours"
}
