-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: make show-core-output is failing due to lack of access to manage…
…ment storage account (#4407) * Refactor Makefile to use show_output.sh for displaying Terraform output and improve error handling in mgmtstorage scripts. * CHANGELOG file update with bug fix details. * Update CHANGELOG to clarify management storage access error fix in `make show-core-output` * Fix typo in CHANGELOG regarding management storage access error and clean up error messages in mgmtstorage_enable_public_access.sh script * Bump core version to 0.12.6 --------- Co-authored-by: Ashis Kar <[email protected]>
- Loading branch information
1 parent
0ec539a
commit 3fcbdf9
Showing
5 changed files
with
27 additions
and
19 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
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,12 @@ | ||
#!/bin/bash | ||
|
||
set -o errexit | ||
set -o pipefail | ||
set -o nounset | ||
# set -o xtrace | ||
|
||
# shellcheck disable=SC2154 | ||
../../devops/scripts/terraform_wrapper.sh -g "${TF_VAR_mgmt_resource_group_name}" \ | ||
-s "${TF_VAR_mgmt_storage_account_name}" \ | ||
-n "${TF_VAR_terraform_state_container_name}" \ | ||
-k "${TRE_ID}" -c "terraform show" |
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 |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.12.5" | ||
__version__ = "0.12.6" |
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