-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed issue that was causing error handling in provision script to no…
…t work correctly - now resolved. Updated script to not automatically apply by default. It now requires that you specify -auto_approve true when calling the provision script in order to get that behaviour. Added provision.sh wrapper script that utilizes devops-cli docker image for linux users that don't wish to install powershell on their systems.
- Loading branch information
1 parent
e2b8171
commit 83aeb35
Showing
2 changed files
with
15 additions
and
14 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/env bash | ||
|
||
set -eax | ||
|
||
docker run --rm -it -v "$(pwd)":/workspace ryanmcafee/devops-cli /bin/pwsh provision.ps1 "$@" |