variable "aws_region" {
  type        = string
  default     = "eu-central-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-conversion"
}

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-065a1285350e0c52b"
}

variable "vpc_name" {
  description = "Unique identifier for the VPC"
  default     = "MC-PREVIEW"
}

variable "vpc_tgw_name" {
  description = "Unique identifier for the VPC in TGW"
  default     = "media-conversion-dev-mc-preview"
}

variable "private_subnet_ids" {
  default = [
    "subnet-0fdab667325bbb524", # MC-PREVIEW-IEKS-NODE-1A (eu-central-1b)
    "subnet-0e588f3aa97001467", # MC-PREVIEW-IEKS-NODE-1B (eu-central-1a)
  ]
}
