16 lines
284 B
HCL
16 lines
284 B
HCL
variable "subscription_id" {
|
|
description = "Azure subscription id"
|
|
type = string
|
|
}
|
|
|
|
variable "tenant_id" {
|
|
description = "Azure AD tenant id"
|
|
type = string
|
|
}
|
|
|
|
variable "location" {
|
|
description = "Azure region"
|
|
type = string
|
|
default = "eastus"
|
|
}
|