File tree Expand file tree Collapse file tree 3 files changed +12
-11
lines changed Expand file tree Collapse file tree 3 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ setup_environment() {
43
43
export TF_VAR_credentials_path_relative=" ../shared/credentials.json"
44
44
export TF_VAR_region=" $REGION "
45
45
export TF_VAR_zones=" $ZONES "
46
- export TF_VAR_cluster_resource_labels=" $CLUSTER_RESOURCE_LABELS "
46
+ # export TF_VAR_cluster_resource_labels="$CLUSTER_RESOURCE_LABELS"
47
47
export TF_VAR_compute_engine_service_account=" $COMPUTE_ENGINE_SERVICE_ACCOUNT "
48
48
}
49
49
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ cluster_resource_labels = {created-by = " terraform" }
Original file line number Diff line number Diff line change 17
17
module "example" {
18
18
source = " ../../../examples/simple_zonal"
19
19
20
- project_id = " ${ var . project_id } "
21
- credentials_path = " ${ local . credentials_path } "
22
- cluster_name_suffix = " -${ random_string . suffix . result } "
23
- region = " ${ var . region } "
24
- zones = [" ${ slice (var. zones ,0 ,1 )} " ]
25
- network = " ${ google_compute_network . main . name } "
26
- subnetwork = " ${ google_compute_subnetwork . main . name } "
27
- ip_range_pods = " ${ google_compute_subnetwork . main . secondary_ip_range . 0 . range_name } "
28
- ip_range_services = " ${ google_compute_subnetwork . main . secondary_ip_range . 1 . range_name } "
20
+ project_id = " ${ var . project_id } "
21
+ credentials_path = " ${ local . credentials_path } "
22
+ cluster_name_suffix = " -${ random_string . suffix . result } "
23
+ region = " ${ var . region } "
24
+ zones = [" ${ slice (var. zones ,0 ,1 )} " ]
25
+ network = " ${ google_compute_network . main . name } "
26
+ subnetwork = " ${ google_compute_subnetwork . main . name } "
27
+ ip_range_pods = " ${ google_compute_subnetwork . main . secondary_ip_range . 0 . range_name } "
28
+ ip_range_services = " ${ google_compute_subnetwork . main . secondary_ip_range . 1 . range_name } "
29
+ cluster_resource_labels = " ${ var . cluster_resource_labels } "
29
30
}
You can’t perform that action at this time.
0 commit comments