Files
smom-dbis-138/terraform/modules/networking/variables.tf

29 lines
566 B
Terraform
Raw Normal View History

# Variables for Networking Module
variable "resource_group_name" {
description = "Name of the resource group"
type = string
}
variable "location" {
description = "Azure region"
type = string
}
variable "cluster_name" {
description = "Name of the AKS cluster"
type = string
}
variable "environment" {
description = "Environment (prod, dev, test, staging)"
type = string
default = "prod"
}
variable "tags" {
description = "Tags to apply to networking resources"
type = map(string)
default = {}
}