generated from Azure/terraform-verified-module
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.acr.tf
33 lines (28 loc) · 1.07 KB
/
variables.acr.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#######################################
# Azure Container Registry #
#######################################
variable "create_app_container_registry" {
description = "Controls if the ACR should be created. Default is false."
type = bool
default = false
}
variable "acr_sku" {
description = "The SKU of the Azure Container Registry. Possible values are Basic, Standard and Premium. Defaults to Premium."
type = string
default = "Premium"
}
##########################
# ACR Private Endpoint ##
##########################
variable "enable_acr_private_endpoint" {
description = "Controls if the private endpoint should be created. Default is false."
type = bool
default = true
}
variable "existing_acr_private_dns_zone" {
description = "The id of the existing private DNS Zone to use. If not set, the name will be generated using the `org_name`, `workload_name`, `deploy_environment` and `environment` variables."
type = string
default = null
}