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     = "dev"
}

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

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-0cd54bb1246c0e428"
}

variable "vpc_name" {
  description = "Unique identifier for the VPC"
  default     = "DC-D"
}

variable "vpc_tgw_name" {
  description = "Unique identifier for the VPC in TGW"
  default     = "dc-dev-dc-d"
}

variable "private_subnet_ids" {
  default = [
    "subnet-0f529b9145ebdaca2",
    "subnet-0c38ffa48e204a89e",
    "subnet-06250da9cb8a4779e",
  ]
}
