-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathvariables.tf
33 lines (27 loc) · 908 Bytes
/
variables.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
variable "cidr_transit" {
type = string
description = "(Required) The CIDR for the Azure transit VNet"
}
variable "cidr_dp" {
type = string
description = "(Required) The CIDR for the Azure Data Plane VNet"
}
variable "location" {
type = string
description = "(Required) The location for the resources in this module"
}
variable "public_network_access_enabled" {
type = bool
description = "(Optional, default: false) If access from the public networks should be enabled"
default = false
}
variable "private_subnet_endpoints" {
description = "The list of Service endpoints to associate with the private subnet."
type = list(string)
default = []
}
variable "transit_private_subnet_endpoints" {
description = "The list of Service endpoints to associate with the private transit subnet."
type = list(string)
default = []
}