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     = "us-east-1"
}



variable "platform" {
  type = map(string)

  default = {
    name        = "security"
    prefix      = "dev-delphi"
    environment = "Development"
  }
}



variable "admin_users" {
  type        = list(string)
  description = ""
}

variable "tags" {
  type = map(string)

  default = {
    managed_by               = "Terraform"
    platform                 = "Delphi"
    environment              = "Common"
    project                  = "Security"
    plat_env_project_service = "DLP_CMN_SEC"
    application_family       = "delphi"
  }
}
