Skip to content

Commit 64792f9

Browse files
egorksvekfastlane
andauthored
fixed terraform issues (#100)
Co-authored-by: ecole <[email protected]>
1 parent a7140e7 commit 64792f9

File tree

4 files changed

+1
-3
lines changed

4 files changed

+1
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ terraform.tfvars
77
.gcp*
88
cluster_bootstrap_state
99
gcp-account.json
10+
*.iml

terraform-aws/client.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ resource "aws_autoscaling_group" "client_nodes" {
3939
max_size = var.clients_count[keys(var.clients_count)[count.index]]
4040
min_size = var.clients_count[keys(var.clients_count)[count.index]]
4141
desired_capacity = var.clients_count[keys(var.clients_count)[count.index]]
42-
availability_zones = [keys(var.clients_count)[count.index]]
4342
default_cooldown = 30
4443
force_delete = true
4544

terraform-aws/datas.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ resource "aws_autoscaling_group" "data_nodes" {
4040
max_size = var.datas_count[keys(var.datas_count)[count.index]]
4141
min_size = var.datas_count[keys(var.datas_count)[count.index]]
4242
desired_capacity = var.datas_count[keys(var.datas_count)[count.index]]
43-
availability_zones = [keys(var.datas_count)[count.index]]
4443
default_cooldown = 30
4544
force_delete = true
4645

terraform-aws/masters.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ resource "aws_autoscaling_group" "master_nodes" {
5050
max_size = var.masters_count[keys(var.masters_count)[count.index]]
5151
min_size = var.masters_count[keys(var.masters_count)[count.index]]
5252
desired_capacity = var.masters_count[keys(var.masters_count)[count.index]]
53-
availability_zones = [keys(var.masters_count)[count.index]]
5453
default_cooldown = 30
5554
force_delete = true
5655

0 commit comments

Comments
 (0)