-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
106 lines (85 loc) · 2.44 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
variable "prefix" {
description = "Prefix for Azure resources."
}
variable "location" {
description = "Location of Azure resources."
}
variable "tags" {
type = map(string)
description = "Tags to apply to Azure resources."
default = {}
}
variable "availability_zones" {
type = list(string)
description = "List of availability zones for Azure resources."
}
variable "ddos_protection_plan_id" {
description = "DDOS Protection Plan ID"
}
variable "start" {
type = object({
first = number
second = number
})
description = "Starting octect for network resources. This module uses a /14"
}
variable "parent_dns_zone_name" {
description = "Name of the parent DNS zone"
default = ""
}
variable "parent_dns_zone_resource_group_name" {
description = "Name of the resource group containing the parent DNS zone"
default = ""
}
variable "dns_zone" {
description = "DNS zone"
}
variable "ingress_general_private_ip" {
description = "Private IP of the general ingress"
default = null
}
variable "ingress_kubeflow_private_ip" {
description = "Private IP of the kubeflow ingress"
default = null
}
variable "ingress_authenticated_private_ip" {
description = "Private IP of the authenticated ingress"
default = null
}
variable "ingress_protected_b_private_ip" {
description = "Private IP of the protected-b ingress"
default = null
}
variable "ingress_geoanalytics_private_ip" {
description = "Private IP of the geoanalytics ingress"
default = null
}
variable "ingress_jfrog_private_ip" {
description = "Private IP of the jfrog ingress"
default = null
}
variable "ingress_allowed_sources" {
type = list(string)
description = "Source IPs which are allowed to connect to the ingress gateway"
default = ["*"]
}
variable "cloud_main_firewall_ip" {
description = "IP of cloud main firewall"
default = null
}
variable "cloud_main_address_prefix" {
description = "IP prefix for cloud main addresses."
default = null
}
variable "management_cluster_https_ingress_gateway_ip" {
description = "IP of cloud main (Management cluster) ingress gateway for HTTPs traffic."
default = null
}
variable "cloud_main_gitlab_ssh_ip" {
description = "IP of cloud main gitlab for ssh (gitlab-ssh.cloud.statcan.ca)"
default = null
}
variable "geo_database_ip" {
description = "IP of geo database (geo-prod-mulp-db.postgres.database.azure.com)"
default = null
}