@@ -23,6 +23,8 @@ module "masters" {
23
23
cluster_name = var. cluster_name
24
24
subnet_ids = module. vpc . public_subnet_ids
25
25
security_group_id = module. common . security_group_id
26
+ master_type = var. master_type
27
+ master_volume_size = var. master_volume_size
26
28
image_id = module. common . image_id
27
29
kube_cluster_tag = module. common . kube_cluster_tag
28
30
ssh_key = var. cluster_name
@@ -37,6 +39,8 @@ module "msrs" {
37
39
subnet_ids = module. vpc . public_subnet_ids
38
40
security_group_id = module. common . security_group_id
39
41
image_id = module. common . image_id
42
+ msr_type = var. msr_type
43
+ msr_volume_size = var. msr_volume_size
40
44
kube_cluster_tag = module. common . kube_cluster_tag
41
45
ssh_key = var. cluster_name
42
46
instance_profile_name = module. common . instance_profile_name
@@ -50,10 +54,11 @@ module "workers" {
50
54
subnet_ids = module. vpc . public_subnet_ids
51
55
security_group_id = module. common . security_group_id
52
56
image_id = module. common . image_id
57
+ worker_type = var. worker_type
58
+ worker_volume_size = var. worker_volume_size
53
59
kube_cluster_tag = module. common . kube_cluster_tag
54
60
ssh_key = var. cluster_name
55
61
instance_profile_name = module. common . instance_profile_name
56
- worker_type = var. worker_type
57
62
}
58
63
59
64
module "windows_workers" {
@@ -64,9 +69,10 @@ module "windows_workers" {
64
69
subnet_ids = module. vpc . public_subnet_ids
65
70
security_group_id = module. common . security_group_id
66
71
image_id = module. common . windows_2019_image_id
72
+ worker_type = var. worker_type
73
+ worker_volume_size = var. worker_volume_size
67
74
kube_cluster_tag = module. common . kube_cluster_tag
68
75
instance_profile_name = module. common . instance_profile_name
69
- worker_type = var. worker_type
70
76
windows_administrator_password = var. windows_administrator_password
71
77
}
72
78
0 commit comments