Fix #187 for windows compatibility (#207)

* Added ability to choose local-exec interpreter

* Remove accidental extra file

* formatting
This commit is contained in:
Andrew Roth
2018-12-11 08:55:26 -05:00
committed by Max Williams
parent 0948c20e1d
commit edbea30cfc
4 changed files with 44 additions and 35 deletions

View File

@@ -134,3 +134,9 @@ variable "cluster_delete_timeout" {
description = "Timeout value when deleting the EKS cluster."
default = "15m"
}
variable "local_exec_interpreter" {
description = "Command to run for local-exec resources. Must be a shell-style interpreter. If you are on Windows Git Bash is a good choice. Defaults to [\"/bin/sh\", \"-c\"]"
type = "list"
default = ["/bin/sh", "-c"]
}