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

29 lines
560 B
Terraform
Raw Normal View History

# Variables for Storage 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 storage resources"
type = map(string)
default = {}
}