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     = "media-services"
}

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

variable "vpc_name" {
  description = "Unique identifier for the VPC"
  default     = "MSRV-D2"
}

variable "vpc_tgw_name" {
  description = "Unique identifier for the VPC in TGW"
  default     = "media-services-dev-msrv-d2"
}

variable "private_subnet_ids" {
  default = [
    "subnet-0bee0b7ceac7f83e3", # MSRV-D2-XAPP-1A
    "subnet-0b4843ac6ae76583a", # MSRV-D2-XAPP-1B
  ]
}
