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     = "supply-chain-max"
}

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

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

variable "vpc_tgw_name" {
  description = "Unique identifier for the VPC in TGW"
  default     = "supply-chain-max-dev-max-oh-s"
}

variable "private_subnet_ids" {
  default = [
    "subnet-06d36f4274367b6eb", # MAX-OH-S-XAPP-1A
    "subnet-046e03c2ff4c54b41", # MAX-OH-S-XAPP-1B
    "subnet-0921e21301f824273", # MAX-OH-S-XAPP-1C
  ]
}
