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-0318d4f6303f76d2a"
}

variable "vpc_name" {
  description = "Unique identifier for the VPC"
  default     = "MCDEL-S2"
}

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

variable "private_subnet_ids" {
  default = [
    "subnet-0e057c2596d72a80a", # MCDEL-S2-IAPP-1A
    "subnet-0bfefd2f5c52d1356", # MCDEL-S2-IAPP-1B
  ]
}
