Skip to content

Commit

Permalink
Fixes #220 - removed worker count
Browse files Browse the repository at this point in the history
Fixes #220 - removed worker count
  • Loading branch information
torwen1 committed Jul 23, 2021
1 parent 390ce6a commit 40581ce
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
2 changes: 0 additions & 2 deletions modules/3_helpernode/helpernode.tf
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ locals {
resource "null_resource" "prep_helpernode_tools_git" {
triggers = {
bootstrap_count = var.bootstrap_port_ip == "" ? 0 : 1
worker_count = length(var.worker_port_ips)
}
count = length(regexall("\\.zip$", var.helpernode_repo)) == 0 ? 1 : 0

Expand All @@ -106,7 +105,6 @@ resource "null_resource" "prep_helpernode_tools_git" {
resource "null_resource" "prep_helpernode_tools_curl" {
triggers = {
bootstrap_count = var.bootstrap_port_ip == "" ? 0 : 1
worker_count = length(var.worker_port_ips)
}
count = length(regexall("\\.zip$", var.helpernode_repo)) > 0 ? 1 : 0

Expand Down
6 changes: 0 additions & 6 deletions modules/5_install/install.tf
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,6 @@ locals {
}

resource "null_resource" "prep_playbooks_tools_git" {
triggers = {
worker_count = length(var.worker_ips)
}
count = length(regexall("\\.zip$", var.install_playbook_repo)) == 0 ? 1 : 0

connection {
Expand All @@ -100,9 +97,6 @@ resource "null_resource" "prep_playbooks_tools_git" {
}

resource "null_resource" "prep_playbooks_tools_curl" {
triggers = {
worker_count = length(var.worker_ips)
}
count = length(regexall("\\.zip$", var.install_playbook_repo)) > 0 ? 1 : 0

connection {
Expand Down

0 comments on commit 40581ce

Please sign in to comment.