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     = "prod"
}

variable "account_group" {
  description = "The name of the account group"
  default     = "aoma-core"
}

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

variable "vpc_name" {
  description = "Unique identifier for the VPC"
  default     = "AOMA-P1"
}

variable "vpc_tgw_name" {
  description = "Unique identifier for the VPC in TGW"
  default     = "aoma-core-prod-aoma-p1"
}

variable "private_subnet_ids" {
  default = [
    "subnet-09b490b9015c70f35",
    "subnet-08ab4e158f16130f2",
    "subnet-020a9f769e5c32c0e",
  ]
}
