Last active
October 15, 2021 16:18
-
-
Save joakimhew/343f60d4eca59538fe576601a3201036 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "null_resource" "cycle_nodes" { | |
triggers = { | |
"sha256" = filesha256("./cycle-nodes.sh") | |
} | |
provisioner "local-exec" { | |
command = <<EOH | |
chmod 0755 cycle-nodes.sh | |
./cycle-nodes.sh -c dev-cluster | |
EOH | |
} | |
depends_on = [ | |
module.eni_config | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment