@@ -40,15 +40,16 @@ module "common" {
4040}
4141
4242module "managers" {
43- source = " ./modules/manager"
44- manager_count = var. manager_count
45- gcp_region = var. gcp_region
46- gcp_zone = local. zone
47- cluster_name = var. cluster_name
48- image_name = module. common . image_name
49- vpc_name = module. vpc . vpc_name
50- subnetwork_name = module. vpc . subnet_name
51- ssh_key = module. common . ssh_key
43+ source = " ./modules/manager"
44+ manager_count = var. manager_count
45+ gcp_region = var. gcp_region
46+ gcp_zone = local. zone
47+ cluster_name = var. cluster_name
48+ image_name = module. common . image_name
49+ vpc_name = module. vpc . vpc_name
50+ subnetwork_name = module. vpc . subnet_name
51+ ssh_key = module. common . ssh_key
52+ service_account_email = module. common . service_account_email
5253}
5354
5455module "msrs" {
@@ -64,30 +65,32 @@ module "msrs" {
6465}
6566
6667module "workers" {
67- source = " ./modules/worker"
68- worker_count = var. worker_count
69- gcp_region = var. gcp_region
70- gcp_zone = local. zone
71- cluster_name = var. cluster_name
72- vpc_name = module. vpc . vpc_name
73- subnetwork_name = module. vpc . subnet_name
74- image_name = module. common . image_name
75- ssh_key = module. common . ssh_key
76- worker_type = var. worker_type
68+ source = " ./modules/worker"
69+ worker_count = var. worker_count
70+ gcp_region = var. gcp_region
71+ gcp_zone = local. zone
72+ cluster_name = var. cluster_name
73+ vpc_name = module. vpc . vpc_name
74+ subnetwork_name = module. vpc . subnet_name
75+ image_name = module. common . image_name
76+ ssh_key = module. common . ssh_key
77+ worker_type = var. worker_type
78+ service_account_email = module. common . service_account_email
7779}
7880
7981module "windows_workers" {
80- source = " ./modules/windows_worker"
81- worker_count = var. windows_worker_count
82- gcp_zone = local. zone
83- cluster_name = var. cluster_name
84- vpc_name = module. vpc . vpc_name
85- subnetwork_name = module. vpc . subnet_name
86- image_name = module. common . windows_2019_image_name
87- ssh_key = module. common . ssh_key
88- worker_type = var. worker_type
89- windows_user = var. windows_user
90- windows_password = var. windows_password
82+ source = " ./modules/windows_worker"
83+ worker_count = var. windows_worker_count
84+ gcp_zone = local. zone
85+ cluster_name = var. cluster_name
86+ vpc_name = module. vpc . vpc_name
87+ subnetwork_name = module. vpc . subnet_name
88+ image_name = module. common . windows_2019_image_name
89+ ssh_key = module. common . ssh_key
90+ worker_type = var. worker_type
91+ windows_user = var. windows_user
92+ windows_password = var. windows_password
93+ service_account_email = module. common . service_account_email
9194}
9295
9396locals {
0 commit comments