Created
October 15, 2021 14:46
-
-
Save joakimhew/1c87c65664a4eff4c913fa8a6f9d2a92 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" "annotate_nodes" { | |
triggers = { | |
"sha256" = filesha256("./annotate-nodes.sh") | |
} | |
provisioner "local-exec" { | |
command = <<EOH | |
chmod 0755 annotate-nodes.sh | |
./annotate-nodes.sh | |
EOH | |
} | |
depends_on = [ | |
module.eks | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment