-
Notifications
You must be signed in to change notification settings - Fork 8
/
variables.tf
69 lines (56 loc) · 1.64 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
variable "project_id" {
description = "The project ID to host the cluster in"
}
variable "cluster_name" {
description = "The name for the GKE cluster"
default = "gke-on-vpc-cluster"
}
variable "region" {
description = "The region to host the cluster in"
}
variable "zones" {
type = list(string)
description = "The zone to host the cluster in (required if is a zonal cluster)"
}
variable "network" {
description = "The VPC network created to host the cluster in"
default = "gke-network"
}
variable "subnetwork" {
description = "The subnetwork created to host the cluster in"
default = "gke-subnet"
}
variable "ip_range_pods_name" {
description = "The secondary ip range to use for pods"
default = "ip-range-pods"
}
variable "ip_range_services_name" {
description = "The secondary ip range to use for services"
default = "ip-range-scv"
}
variable domain {
description = "Domain to create with external-dns"
default = ""
}
variable domain_filter {
description = "Domain filter for external-dns"
default = ""
}
variable email {
description = "Your email used to login to Google Cloud Platform"
default = ""
}
variable "dns_auth" {
type = list(map(string))
description = "DNS auth variables including the provider matching helm chart variables"
default = []
}
variable "oidc_config" {
type = list(map(string))
description = "OIDC Configuration for protecting private resources. Used by Pomerium IAP & Vault."
default = []
}
variable run_post_install {
default = false
description = "Whether to apply components that require existing resources"
}