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     = "mc-sec"
}

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-07d77b1cbe1ac12ee"
}

variable "vpc_name" {
  description = "Unique identifier for the VPC"
  default     = "MCSEC-S1"
}

variable "vpc_tgw_name" {
  description = "Unique identifier for the VPC in TGW"
  default     = "mc-sec-dev-mcsec-s1"
}

variable "private_subnet_ids" {
  default = [
    "subnet-0ef569d4d9c3994e2", # MCSEC-S1-APP-1A
    "subnet-03b6e39480feed738", # MCSEC-S1-APP-1B
  ]
}
