-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
62 lines (51 loc) · 1.81 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
variable "environment" {
type = string
description = "The release stage of the environment"
}
variable "prefix" {
type = string
description = "prefix to be used for resource names"
}
variable "location" {
type = string
description = "The location of the resource group"
}
variable "tags" {
type = map(string)
description = "Tags that should be applied to all deployed resources"
}
variable "tenant_id" {
type = string
}
variable "privatelink-dns-zone-names" {
type = list(string)
description = "List of Azure Private Link DNS Zone names"
}
variable "vnet_address_space" {
type = string
description = "Address space to use for the Management Zone VNet"
}
variable "firewall_subnet_address_space" {
type = string
description = "Address space to use for the Azure Firewall subnet within the Management Zone VNet"
}
variable "services_subnet_address_space" {
type = string
description = "Address space to use for the Shared Services subnet within the Management Zone VNet"
}
variable "gateway_subnet_address_space" {
type = string
description = "Address space to use for the Virtual Network Gateway subnet within the Management Zone VNet"
}
variable "vpn_client_address_space" {
type = string
description = "Address space to use for VPN clients connecting through the Virtual Network Gateway"
}
variable "firewall_private_ip" {
type = string
description = "The private IP address to be used by Azure Firewall. This will be the first available IP from the subnet range defined by the firewall_subnet_address_space variable."
}
variable "vnet_gateway_public_cert" {
type = string
description = "Public root certificate to use to sign the client certificate used by the VPN clients to connect to the gateway"
}