variable "aws_region" {
  type        = string
  default     = "us-east-1"
  description = "The AWS region to create resources in"
}

variable "environment" {
  description = "The name of the environment"
  default     = "prod"
}

variable "account_group" {
  description = "The name of the account group"
  default     = "amp"
}

variable "application_family" {
  description = "Name of application family"
  default     = "devops"
}

variable "team_name" {
  description = "Name of the team that owns this infrastructure"
  default     = "devops"
}

variable "vpc_id" {
  default = "vpc-0d1e554606bf981b1"
}

variable "vpc_name" {
  description = "Unique identifier for the VPC"
  default     = "AMP-DIGARCH-P"
}

variable "vpc_tgw_name" {
  description = "Unique identifier for the VPC in TGW"
  default     = "amp-prod-amp-digarch-p"
}

variable "private_subnet_ids" {
  default = [
    "subnet-0e588b021a8daed08",
    "subnet-0dd720b35d3963386",
  ]
}
