-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterraform.tfvars.example
More file actions
30 lines (23 loc) · 958 Bytes
/
terraform.tfvars.example
File metadata and controls
30 lines (23 loc) · 958 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
# GCP project ID for the cluster (required). Set via TF_VAR_gcp_project_id or uncomment:
#gcp_project_id = "my-gcp-project"
# Name of the OSD cluster (must match terraform/wif_config). Set via TF_VAR_cluster_name or uncomment:
#cluster_name = "my-vpc-cluster"
# OpenShift version (x.y.z)
openshift_version = "4.21.3"
# GCP region for the cluster and VPC
gcp_region = "us-central1"
# Enable Private Service Connect for private cluster (requires OpenShift 4.17+)
enable_psc = false
# OCM token: optional; use OSDGOOGLE_TOKEN env var
#ocm_token = "your-token"
# Additional machine pools (optional). If autoscaling_enabled = true, set min_replicas and max_replicas. If false, set replicas.
# machine_pools = [
# {
# name = "compute"
# instance_type = "n2-standard-4"
# autoscaling_enabled = false
# replicas = 3
# }
# ]
# GCP: use Application Default Credentials
# gcloud auth application-default login