-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
67 lines (51 loc) · 1.85 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
63
64
65
66
67
variable "weefee_nic_staticprivate" {
description = "Static private IP address for the Weefee VM"
}
variable "hive13_ssh_key" {
description = "SSH public key for the VM admin account"
}
variable "s2s_ipsec_psk" {
description = "IPsec pre-shared secret for Hive13 site-to-site-VPN"
}
variable "vnet_address_space" {
description = "Address space of the Hive13 Azure virtual network"
}
variable "vnet_dns_servers" {
description = "DNS servers to assign to hosts on the Azure virtual network"
}
variable "gateway_subnet_prefix" {
description = "CIDR representation of the address space on the GatewaySubnet"
}
variable "vms_subnet_prefix" {
description = "CIDR representation of the address space on the VM subnet"
}
variable "s2s_local_gateway_ip" {
description = "Public IP of the on-premises side of the Azure S2S VPN"
}
variable "s2s_local_address_space" {
description = "Address space behind the S2S on-premises gateway"
}
variable "revprox_nic_staticprivate" {
description = "Static IP of the network interface on the reverse proxy VM"
}
variable "psqlmaster_nic_staticprivate" {
description = "static IP of the network interface on the PostgreSQL master VM"
}
variable "intwebapp_nic_staticprivate" {
description = "static IP of the network interface on the Intweb application VM"
}
variable "bitwarden_nic_staticprivate" {
description = "static IP of the network interface on the Bitwarden server VM"
}
variable "webhost_nic_staticprivate" {
description = "Static IP of the network interface on the public web server VM"
}
variable "hive13-2701_local_gateway_ip" {
description = "Public IP of the on-prem side of the tunnel to 2701"
}
variable "hive13-2701_local_address_space" {
description = "Address space on the local side at 2701"
}
variable "gw2701_ipsec_psk" {
description = "IPsec pre-shared secret for Hive13 site-to-site-VPN at 2701"
}