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-24256e4d"
}

variable "vpc_name" {
  description = "Unique identifier for the VPC"
  default     = "MCON-S"
}

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

variable "private_subnet_ids" {
  default = [
    "subnet-0f0f3752cbb3264b8", # mc-stage-batch-01 (eu-central-1a)
    "subnet-2c5a1a57",          # mc-stage-snet-app-01 (eu-central-1b)
  ]
}
