generated from Azure/terraform-verified-module
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.pe.tf
35 lines (28 loc) · 1021 Bytes
/
variables.pe.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
34
35
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
##########################################
# Blob Private Endpoint Configuration ##
##########################################
variable "enable_blob_private_endpoint" {
description = "Manages a Private Endpoint to Azure Storage Account for Blob"
default = false
}
variable "existing_private_dns_zone" {
description = "Name of the existing private DNS zone"
default = null
}
variable "existing_private_subnet_name" {
description = "Name of the existing private subnet for the private endpoint"
default = null
}
variable "virtual_network_name" {
description = "The name of the virtual network for private endpoints"
default = null
}
##########################################
# Table Private Endpoint Configuration ##
##########################################
variable "enable_table_private_endpoint" {
description = "Manages a Private Endpoint to Azure Storage Account for Tables"
default = false
}