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

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-04dc169c2b57103a8"
}

variable "vpc_name" {
  description = "Unique identifier for the VPC"
  default     = "DIGSYS-S3"
}

variable "vpc_tgw_name" {
  description = "Unique identifier for the VPC in TGW"
  default     = "eom-dev-digsys-s3"
}

variable "private_subnet_ids" {
  default = [
    "subnet-0ace67f3b1514efcb", # DIGSYS-S3-XAPP-1A
    "subnet-0511a18c55ce73049", # DIGSYS-S3-XAPP-1B
    "subnet-046a403259218b46c", # DIGSYS-S3-XAPP-1C
  ]
}
