Skip to content

Commit

Permalink
Fixed shellcheck disable in bootstrap.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Labhard Jonathan authored and Labhard Jonathan committed Aug 4, 2023
1 parent 12fa3c3 commit 31ca5c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions devops/terraform/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -o nounset

# Baseline Azure resources
echo -e "\n\e[34m»»» 🤖 \e[96mCreating resource group and storage account\e[0m..."
# shellcheck disable=SC2154
# shellcheck disable=SC2154,SC2046
az group create --resource-group "$TF_VAR_mgmt_resource_group_name" \
--location "$LOCATION" \
-o table \
Expand All @@ -18,7 +18,7 @@ az storage account create --resource-group "$TF_VAR_mgmt_resource_group_name" \
--tags $(echo "$TAGS" | jq -r 'to_entries | map("\(.key)=\(.value)")| join(" ")')

# Blob container
# shellcheck disable=SC2154,SC2046
# shellcheck disable=SC2154
az storage container create --account-name "$TF_VAR_mgmt_storage_account_name" --name "$TF_VAR_terraform_state_container_name" --auth-mode login -o table

# logs container
Expand Down

0 comments on commit 31ca5c5

Please sign in to comment.