-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
37 lines (29 loc) · 879 Bytes
/
Copy pathvariables.tf
File metadata and controls
37 lines (29 loc) · 879 Bytes
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
variable "project_id" {
description = "The project ID to host the cluster in"
}
variable "cluster_name_suffix" {
description = "A suffix to append to the default cluster name"
default = ""
}
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 to host the cluster in"
}
variable "subnetwork" {
description = "The subnetwork to host the cluster in"
}
variable "ip_range_pods" {
description = "The secondary ip range to use for pods"
}
variable "ip_range_services" {
description = "The secondary ip range to use for services"
}
variable "compute_engine_service_account" {
description = "Service account to associate to the nodes in the cluster"
}