31 lines
560 B
Terraform
31 lines
560 B
Terraform
|
|
# 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 = {}
|
||
|
|
}
|
||
|
|
|