Skip to content

Commit

Permalink
fix: -p is not the correct flag
Browse files Browse the repository at this point in the history
  • Loading branch information
nickumia-reisys committed Mar 2, 2022
1 parent 95671e8 commit dfb0a96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/modules/provision/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# can to avoid that.
resource "null_resource" "prerequisite_binaries_present" {
provisioner "local-exec" {
interpreter = ["/bin/bash", "-c"]
command = "type -p aws-iam-authenticator git helm kubectl"
interpreter = ["/bin/sh", "-c"]
command = "type -a aws-iam-authenticator git helm kubectl"
}
}

0 comments on commit dfb0a96

Please sign in to comment.