зеркало из https://github.com/microsoft/AzureTRE.git
26 строки
549 B
HCL
26 строки
549 B
HCL
variable "mgmt_storage_account_name" {
|
|
type = string
|
|
description = "Storage account created by bootstrap to hold all Terraform state"
|
|
}
|
|
|
|
variable "mgmt_resource_group_name" {
|
|
type = string
|
|
description = "Shared management resource group"
|
|
}
|
|
|
|
variable "location" {
|
|
type = string
|
|
description = "Location used for all resources"
|
|
}
|
|
|
|
variable "acr_sku" {
|
|
type = string
|
|
default = "Standard"
|
|
description = "Price tier for ACR"
|
|
}
|
|
|
|
variable "acr_name" {
|
|
type = string
|
|
description = "Name of ACR"
|
|
}
|