Files
smom-dbis-138/terraform/multi-cloud/modules/azure/variables.tf

31 lines
560 B
Terraform
Raw Normal View History

# Variables for Azure Module
variable "environment_config" {
description = "Environment configuration from environments.yaml"
type = any
}
variable "environment" {
description = "Environment name"
type = string
}
variable "subscription_id" {
description = "Azure subscription ID"
type = string
default = ""
}
variable "tenant_id" {
description = "Azure tenant ID"
type = string
default = ""
}
variable "tags" {
description = "Tags to apply to resources"
type = map(string)
default = {}
}