Skip to content

Commit 57ff370

Browse files
authored
ci: refactor bootstrapping to avoid needing to invoke apt get (Azure#2336)
* refactor: Stop invoking jq in infra scripts * refactor: Remove some commented out code from infra * refactor: Don't install jq Ubuntu runners come with it pre-installed: https://github.com/actions/runner-images/blob/4fe7f6bc86111e8ae1721eeecaa8df3e9a3c2dbd/images/linux/Ubuntu2204-Readme.md * refactor: Replace `az command | jq '.QUERY'` with `az command --query QUERY` * refactor: Collapse `jq | jq | jq` into a single jq invocation * refactor: Do not install xmlstarlet Seem to be entirely unused * refactor: Don't install uuid-runtime and remove install_packages function
1 parent 184af7f commit 57ff370

File tree

12 files changed

+47
-90
lines changed

12 files changed

+47
-90
lines changed

cli/batch-score-rest.sh

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# <create_variables>
2-
SUBSCRIPTION_ID=$(az account show --query id | tr -d '\r"')
3-
RESOURCE_GROUP=$(az group show --query name | tr -d '\r"')
4-
WORKSPACE=$(az configure -l | jq -r '.[] | select(.name=="workspace") | .value')
2+
SUBSCRIPTION_ID=$(az account show --query id -o tsv)
3+
RESOURCE_GROUP=$(az group show --query name -o tsv)
4+
WORKSPACE=$(az configure -l --query "[?name=='workspace'].value" -o tsv)
55

6-
LOCATION=$(az ml workspace show| jq -r '.location')
6+
LOCATION=$(az ml workspace show --query location -o tsv)
77

88
API_VERSION="2022-05-01"
99

@@ -149,7 +149,7 @@ response=$(curl --location --request PUT "https://management.azure.com/subscript
149149
}")
150150
#</create_endpoint>
151151

152-
operation_id=$(echo $response | jq -r '.properties' | jq -r '.properties' | jq -r '.AzureAsyncOperationUri')
152+
operation_id=$(echo $response | jq -r '.properties.properties.AzureAsyncOperationUri')
153153
wait_for_completion $operation_id $TOKEN
154154

155155
# <create_deployment>
@@ -201,7 +201,7 @@ response=$(curl --location --request PUT "https://management.azure.com/subscript
201201
\"location\": \"$LOCATION\"
202202
}")
203203

204-
operation_id=$(echo $response | jq -r '.properties' | jq -r '.properties' | jq -r '.AzureAsyncOperationUri')
204+
operation_id=$(echo $response | jq -r '.properties.properties.AzureAsyncOperationUri')
205205
wait_for_completion $operation_id $TOKEN
206206
#</set_endpoint_defaults>
207207

cli/deploy-rest.sh

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
set -x
22

33
# <create_variables>
4-
SUBSCRIPTION_ID=$(az account show --query id | tr -d '\r"')
5-
LOCATION=$(az ml workspace show --query location | tr -d '\r"')
6-
RESOURCE_GROUP=$(az group show --query name | tr -d '\r"')
7-
WORKSPACE=$(az configure -l | jq -r '.[] | select(.name=="workspace") | .value')
4+
SUBSCRIPTION_ID=$(az account show --query id -o tsv)
5+
LOCATION=$(az ml workspace show --query location -o tsv)
6+
RESOURCE_GROUP=$(az group show --query name -o tsv)
7+
WORKSPACE=$(az configure -l --query "[?name=='workspace'].value" -o tsv)
88

99
#</create_variables>
1010

@@ -124,7 +124,7 @@ response=$(curl --location --request PUT "https://management.azure.com/subscript
124124
#</create_endpoint>
125125

126126
echo "Endpoint response: $response"
127-
operation_id=$(echo $response | jq -r '.properties' | jq -r '.properties' | jq -r '.AzureAsyncOperationUri')
127+
operation_id=$(echo $response | jq -r '.properties.properties.AzureAsyncOperationUri')
128128
wait_for_completion $operation_id
129129

130130
# <create_deployment>
@@ -153,15 +153,15 @@ response=$(curl --location --request PUT "https://management.azure.com/subscript
153153
#</create_deployment>
154154

155155
echo "Endpoint response: $response"
156-
operation_id=$(echo $response | jq -r '.properties' | jq -r '.properties' | jq -r '.AzureAsyncOperationUri')
156+
operation_id=$(echo $response | jq -r '.properties.properties.AzureAsyncOperationUri')
157157
wait_for_completion $operation_id
158158

159159
# <get_endpoint>
160160
response=$(curl --location --request GET "https://management.azure.com/subscriptions/$SUBSCRIPTION_ID/resourceGroups/$RESOURCE_GROUP/providers/Microsoft.MachineLearningServices/workspaces/$WORKSPACE/onlineEndpoints/$ENDPOINT_NAME?api-version=$API_VERSION" \
161161
--header "Content-Type: application/json" \
162162
--header "Authorization: Bearer $TOKEN")
163163

164-
scoringUri=$(echo $response | jq -r '.properties' | jq -r '.scoringUri')
164+
scoringUri=$(echo $response | jq -r '.properties.scoringUri')
165165
# </get_endpoint>
166166

167167
# <get_access_token>

cli/endpoints/batch/deploy-models/custom-outputs-parquet/deploy-and-run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ az ml batch-deployment show --name $DEPLOYMENT_NAME --endpoint-name $ENDPOINT_NA
5050

5151
echo "Invoking batch endpoint"
5252
# <start_batch_scoring_job>
53-
JOB_NAME = $(az ml batch-endpoint invoke --name $ENDPOINT_NAME --input https://azuremlexampledata.blob.core.windows.net/data/heart-disease-uci/data | jq -r '.name')
53+
JOB_NAME = $(az ml batch-endpoint invoke --name $ENDPOINT_NAME --input https://azuremlexampledata.blob.core.windows.net/data/heart-disease-uci/data --query name -o tsv)
5454
# </start_batch_scoring_job>
5555

5656
echo "Showing job detail"

cli/endpoints/batch/deploy-models/heart-classifier-mlflow/deploy-and-run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ az ml batch-deployment show --name $DEPLOYMENT_NAME --endpoint-name $ENDPOINT_NA
5454

5555
echo "Invoking batch endpoint"
5656
# <start_batch_scoring_job>
57-
JOB_NAME = $(az ml batch-endpoint invoke --name $ENDPOINT_NAME --input azureml:heart-dataset-unlabeled@latest | jq -r '.name')
57+
JOB_NAME = $(az ml batch-endpoint invoke --name $ENDPOINT_NAME --input azureml:heart-dataset-unlabeled@latest --query name -o tsv)
5858
# </start_batch_scoring_job>
5959

6060
echo "Showing job detail"

cli/endpoints/batch/deploy-pipelines/batch-scoring-with-preprocessing/deploy-and-run.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,15 @@ az ml batch-deployment create --endpoint $ENDPOINT_NAME -f deployment.yml --set-
5353
#</create_deployment>
5454

5555
#<invoke_deployment_file>
56-
JOB_NAME=$(az ml batch-endpoint invoke -n $ENDPOINT_NAME --f inputs.yml | jq -r ".name")
56+
JOB_NAME=$(az ml batch-endpoint invoke -n $ENDPOINT_NAME --f inputs.yml --query name -o tsv)
5757
#</invoke_deployment_file>
5858

5959
#<stream_job_logs>
6060
az ml job stream -n $JOB_NAME
6161
#</stream_job_logs>
6262

6363
#<get_child_jobs>
64-
az ml job list --parent-job-name $JOB_NAME | jq -r ".[].name"
64+
az ml job list --parent-job-name $JOB_NAME --query "[].name" -o tsv
6565
#</get_child_jobs>
6666

6767
#<download_outputs>

cli/endpoints/batch/deploy-pipelines/hello-batch/deploy-and-run.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ az ml batch-deployment create --endpoint $ENDPOINT_NAME -f deployment.yml --set-
3333
#</create_deployment>
3434

3535
#<invoke_deployment_inline>
36-
JOB_NAME=$(az ml batch-endpoint invoke -n $ENDPOINT_NAME | jq -r ".name")
36+
JOB_NAME=$(az ml batch-endpoint invoke -n $ENDPOINT_NAME --query name -o tsv)
3737
#</invoke_deployment_inline>
3838

3939
#<stream_job_logs>
4040
az ml job stream -n $JOB_NAME
4141
#</stream_job_logs>
4242

4343
#<run_pipeline_job_deployment>
44-
JOB_NAME=$(az ml job create -f pipeline-job.yml | jq -r ".name")
44+
JOB_NAME=$(az ml job create -f pipeline-job.yml --query name -o tsv)
4545
#</run_pipeline_job_deployment>
4646

4747
#<create_deployment_from_job>

cli/endpoints/batch/deploy-pipelines/training-with-components/deploy-and-run.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ az ml batch-deployment create --endpoint $ENDPOINT_NAME -f deployment-ordinal/de
4141
#</create_deployment>
4242

4343
#<invoke_deployment_file>
44-
JOB_NAME=$(az ml batch-endpoint invoke -n $ENDPOINT_NAME --f inputs.yml | jq -r ".name")
44+
JOB_NAME=$(az ml batch-endpoint invoke -n $ENDPOINT_NAME --f inputs.yml --query name -o tsv)
4545
#</invoke_deployment_file>
4646

4747
#<stream_job_logs>
4848
az ml job stream -n $JOB_NAME
4949
#</stream_job_logs>
5050

5151
#<get_child_jobs>
52-
az ml job list --parent-job-name $JOB_NAME | jq -r ".[].name"
52+
az ml job list --parent-job-name $JOB_NAME --query "[].name" -o tsv
5353
#</get_child_jobs>
5454

5555
#<download_outputs>
@@ -64,7 +64,7 @@ az ml batch-deployment create --endpoint $ENDPOINT_NAME -f deployment-onehot/dep
6464

6565
#<invoke_nondefault_deployment_file>
6666
DEPLOYMENT_NAME="uci-classifier-train-onehot"
67-
JOB_NAME=$(az ml batch-endpoint invoke -n $ENDPOINT_NAME -d $DEPLOYMENT_NAME --f inputs.yml | jq -r ".name")
67+
JOB_NAME=$(az ml batch-endpoint invoke -n $ENDPOINT_NAME -d $DEPLOYMENT_NAME --f inputs.yml --query name -o tsv)
6868
#</invoke_nondefault_deployment_file>
6969

7070
#<stream_nondefault_job_logs>

cli/train-rest.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
exit 0 # TODO - update script to new API
22

33
# <create_variables>
4-
SUBSCRIPTION_ID=$(az account show --query id | tr -d '\r"')
5-
LOCATION=$(az group show --query location | tr -d '\r"')
6-
RESOURCE_GROUP=$(az group show --query name | tr -d '\r"')
4+
SUBSCRIPTION_ID=$(az account show --query id -o tsv)
5+
LOCATION=$(az group show --query location -o tsv)
6+
RESOURCE_GROUP=$(az group show --query name -o tsv)
77

8-
WORKSPACE=$(az configure -l | jq -r '.[] | select(.name=="workspace") | .value')
8+
WORKSPACE=$(az configure -l --query "[?name=='workspace'].value" -o tsv)
99
API_VERSION="2022-02-01-preview"
1010
COMPUTE_NAME="cpu-cluster"
1111
TOKEN=$(az account get-access-token --query accessToken -o tsv)
@@ -24,7 +24,7 @@ wait_for_completion () {
2424
job=$(curl --location --request GET "https://management.azure.com/subscriptions/$SUBSCRIPTION_ID/resourceGroups/$RESOURCE_GROUP/providers/Microsoft.MachineLearningServices/workspaces/$WORKSPACE/jobs/$1?api-version=$API_VERSION" \
2525
--header "Authorization: Bearer $TOKEN")
2626
# TODO error handling here
27-
job_status=$(echo $job | jq -r '.properties' | jq -r '.status')
27+
job_status=$(echo $job | jq -r '.properties.status')
2828
echo "Current job status: $job_status"
2929
sleep 5
3030
done

deploy-arm-templates-az-cli.sh

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ TOKEN=$(az account get-access-token --query accessToken -o tsv)
55
#</get_access_token>
66

77
# <create_variables>
8-
SUBSCRIPTION_ID=$(az account show --query id | tr -d '\r"')
9-
LOCATION=$(az ml workspace show --query location | tr -d '\r"')
10-
RESOURCE_GROUP=$(az group show --query name | tr -d '\r"')
11-
WORKSPACE=$(az configure -l | jq -r '.[] | select(.name=="workspace") | .value')
8+
SUBSCRIPTION_ID=$(az account show --query id -o tsv)
9+
LOCATION=$(az ml workspace show --query location -o tsv)
10+
RESOURCE_GROUP=$(az group show --query name -o tsv)
11+
WORKSPACE=$(az configure -l --query "[?name=='workspace'].value" -o tsv)
1212
#</create_variables>
1313

1414
# <set_endpoint_name>
@@ -115,7 +115,7 @@ response=$(curl --location --request GET "https://management.azure.com/subscript
115115
--header "Content-Type: application/json" \
116116
--header "Authorization: Bearer $TOKEN")
117117

118-
operation_id=$(echo $response | jq -r '.properties' | jq -r '.properties' | jq -r '.AzureAsyncOperationUri')
118+
operation_id=$(echo $response | jq -r '.properties.properties.AzureAsyncOperationUri')
119119
wait_for_completion $operation_id
120120
# </get_endpoint>
121121

@@ -142,10 +142,10 @@ response=$(curl --location --request GET "https://management.azure.com/subscript
142142
--header "Content-Type: application/json" \
143143
--header "Authorization: Bearer $TOKEN")
144144

145-
operation_id=$(echo $response | jq -r '.properties' | jq -r '.properties' | jq -r '.AzureAsyncOperationUri')
145+
operation_id=$(echo $response | jq -r '.properties.properties.AzureAsyncOperationUri')
146146
wait_for_completion $operation_id
147147

148-
scoringUri=$(echo $response | jq -r '.properties' | jq -r '.scoringUri')
148+
scoringUri=$(echo $response | jq -r '.properties.scoringUri')
149149
# </get_endpoint>
150150

151151
# <get_endpoint_access_token>

deploy-arm-templates-rest.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
set -x
22

33
# <create_variables>
4-
SUBSCRIPTION_ID=$(az account show --query id | tr -d '\r"')
5-
LOCATION=$(az ml workspace show --query location | tr -d '\r"')
6-
RESOURCE_GROUP=$(az group show --query name | tr -d '\r"')
7-
WORKSPACE=$(az configure -l | jq -r '.[] | select(.name=="workspace") | .value')
4+
SUBSCRIPTION_ID=$(az account show --query id -o tsv)
5+
LOCATION=$(az ml workspace show --query location -o tsv)
6+
RESOURCE_GROUP=$(az group show --query name -o tsv)
7+
WORKSPACE=$(az configure -l --query "[?name=='workspace'].value" -o tsv)
88
schema='$schema'
99
#</create_variables>
1010

@@ -35,7 +35,7 @@ wait_for_completion () {
3535
do
3636
sleep 5
3737
response=$($1)
38-
operation_id=$(echo $response | jq -r '.properties' | jq -r '.properties' | jq -r '.AzureAsyncOperationUri')
38+
operation_id=$(echo $response | jq -r '.properties.properties.AzureAsyncOperationUri')
3939
done
4040

4141
while [[ $status != "Succeeded" && $status != "Failed" ]]

infra/bootstrapping/bootstrap.sh

-4
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,6 @@ else
5050
echo "---------------------------------------------------------"
5151
fi
5252

53-
echo_title "Ensuring dependent packages"
54-
"$SCRIPT_DIR"/sdk_helpers.sh install_packages
55-
5653
echo_title "Installing tools"
5754
"$SCRIPT_DIR"/sdk_helpers.sh install_tools
5855

@@ -61,7 +58,6 @@ echo_title "Installing tools"
6158
###################
6259

6360
"$SCRIPT_DIR"/sdk_helpers.sh validate_tool az || exit 1
64-
"$SCRIPT_DIR"/sdk_helpers.sh validate_tool jq || exit 1
6561
"$SCRIPT_DIR"/sdk_helpers.sh validate_tool sed || exit 1
6662

6763
#login to azure using your credentials

infra/bootstrapping/sdk_helpers.sh

+8-47
Original file line numberDiff line numberDiff line change
@@ -260,43 +260,6 @@ function IsInstalled {
260260
sudo dpkg -S "$1" &> /dev/null
261261
}
262262

263-
function install_packages() {
264-
echo_info "------------------------------------------------"
265-
echo_info ">>> Updating packages index"
266-
echo_info "------------------------------------------------"
267-
268-
echo_info ">>> Executing: apt-get update"
269-
# https://github.com/orgs/community/discussions/47863
270-
sudo apt-mark hold grub-efi-amd64-signed
271-
sudo apt-get update --fix-missing
272-
echo_info ">>> Executing: apt-get upgrade"
273-
sudo apt-get upgrade -y
274-
echo_info ">>> Executing: apt-get dist-upgrade"
275-
sudo apt-get dist-upgrade -y
276-
277-
echo_info ">>> Installing packages"
278-
279-
# jq - Required for running filters on a stream of JSON data from az
280-
# uuid-runtime - Required for containers
281-
# uuid-runtime - Required for aks/arc
282-
packages_to_install=(
283-
jq
284-
uuid-runtime
285-
xmlstarlet
286-
)
287-
for package in "${packages_to_install[@]}"; do
288-
echo_info "Installing '$package'"
289-
if ! IsInstalled "$package"; then
290-
sudo apt-get install -y --no-install-recommends "${package}" > /dev/null 2>&1
291-
else
292-
echo_info "$package is already installed"
293-
fi
294-
done
295-
echo_info ">>> Clean local cache for packages"
296-
297-
sudo apt-get autoclean && sudo apt-get autoremove > /dev/null 2>&1
298-
}
299-
300263
function add_extension() {
301264
echo_info "az extension add -n $1 "
302265
az extension add -n "$1" -y
@@ -489,7 +452,7 @@ connect_arc(){
489452
get_kubeconfig "$AKS_CLUSTER_NAME"
490453

491454
if
492-
[[ $(az connectedk8s show --resource-group "${RESOURCE_GROUP_NAME}" --name "${ARC_CLUSTER_NAME}" | jq -r .name) == ${ARC_CLUSTER_NAME} ]]
455+
[[ $(az connectedk8s show --resource-group "${RESOURCE_GROUP_NAME}" --name "${ARC_CLUSTER_NAME}" --query name --output tsv) == ${ARC_CLUSTER_NAME} ]]
493456
then
494457
echo_info "Cluster: ${ARC_CLUSTER_NAME} is already connected..."
495458
clusterState=$(az connectedk8s show --resource-group "${RESOURCE_GROUP_NAME}" --name "${ARC_CLUSTER_NAME}" --query connectivityStatus -o json)
@@ -527,7 +490,7 @@ function setup_compute() {
527490
fi
528491

529492
if
530-
[[ $(az ml compute show --resource-group "${RESOURCE_GROUP_NAME}" --name "${COMPUTE_NAME}" | jq -r .provisioning_state) == "Succeeded" ]]
493+
[[ $(az ml compute show --resource-group "${RESOURCE_GROUP_NAME}" --name "${COMPUTE_NAME}" --query provisioning_state --output tsv) == "Succeeded" ]]
531494
then
532495
echo_info "Cluster is already attached to workspace for the cluster: ${CLUSTER_NAME} as ${COMPUTE_NAME} in workspace:${WORKSPACE_NAME} under namespace: ${COMPUTE_NS}..."
533496
else
@@ -633,7 +596,7 @@ install_k8s_extension(){
633596
fi
634597

635598
if
636-
[[ $(az k8s-extension show --cluster-type "${CLUSTER_TYPE}" -c "${ARC_CLUSTER_NAME}" -g "${RESOURCE_GROUP_NAME}" --name "${EXTENSION_NAME}" | jq -r .provisioningState) == "Succeeded" ]]
599+
[[ $(az k8s-extension show --cluster-type "${CLUSTER_TYPE}" -c "${ARC_CLUSTER_NAME}" -g "${RESOURCE_GROUP_NAME}" --name "${EXTENSION_NAME}" --output tsv --query provisioningState) == "Succeeded" ]]
637600
then
638601
echo "Extension:${EXTENSION_NAME} already installed on cluster: ${ARC_CLUSTER_NAME}"
639602
else
@@ -745,18 +708,16 @@ function vmss_upgrade_policy_automatic() {
745708
local LOCAL_RESOURCE_GROUP_NAME=${1:-testrg}
746709
printf "Update VMSS upgrade policy in resource group %s\n" ${LOCAL_RESOURCE_GROUP_NAME}
747710
# get list of all scale sets
748-
# VM_SCALE_SETS_JSON=$(az vmss list --resource-group ${LOCAL_RESOURCE_GROUP_NAME} -o json)
749-
# VM_SCALE_SETS_LIST=$(echo $VM_SCALE_SETS_JSON | jq -r '.[] | .name')
750-
VM_SCALE_SETS=$(az vmss list --subscription "${SUBSCRIPTION_ID}" --resource-group ${LOCAL_RESOURCE_GROUP_NAME} | jq -r '.[].name')
711+
VM_SCALE_SETS=$(az vmss list --subscription "${SUBSCRIPTION_ID}" --resource-group ${LOCAL_RESOURCE_GROUP_NAME} --query '[].name' --output tsv)
751712

752713
printf "Checking scalesets %s in resource-group %s\n" "${VM_SCALE_SETS}" "${LOCAL_RESOURCE_GROUP_NAME}"
753714
# temporarily disable the flag
754715
set +e
755716
for VMSS in ${VM_SCALE_SETS}; do
756-
VMSS_PROPERTIES=$(az vmss show --subscription "${SUBSCRIPTION_ID}" --resource-group ${LOCAL_RESOURCE_GROUP_NAME} --name $VMSS)
757-
# echo SKU_TEMP $VMSS_PROPERTIES
717+
VMSS_UPGRADE_POLICY_MODE=$(az vmss show --subscription "${SUBSCRIPTION_ID}" --resource-group ${LOCAL_RESOURCE_GROUP_NAME} --name $VMSS --query upgradePolicy.mode --output tsv)
718+
758719
# az vmss show -g "${LOCAL_RESOURCE_GROUP_NAME}" -n "${VMSS}" -o json
759-
if [[ $(echo $VMSS_PROPERTIES | jq -r '.upgradePolicy.mode') == "Automatic" ]]; then
720+
if [[ "$VMSS_UPGRADE_POLICY_MODE" == "Automatic" ]]; then
760721
echo_info "Skipping to update upgradePolicy for VMSS $VMSS in resource-group ${LOCAL_RESOURCE_GROUP_NAME}..."
761722
continue
762723
else
@@ -778,7 +739,7 @@ function vmss_upgrade_policy_all_rg() {
778739
# checking Resource group name to ensure we're in a managed cluster RG
779740
echo "Number of Resource groups starting with ${RG_PREFIX}:" $(az group list --subscription "${SUBSCRIPTION_ID}" --query "[? starts_with(@.name, '${RG_PREFIX}')] | length(@)")
780741
# az group list --query "[? starts_with(@.name, '${RG_PREFIX}')].name" -o tsv | xargs -i "$SCRIPT_DIR"/sdk_helpers.sh check_vmss "{}"
781-
for LOCAL_RESOURCE_GROUP_NAME in $(az group list --subscription "${SUBSCRIPTION_ID}" --query "[? starts_with(@.name, '${RG_PREFIX}')].name" --output json | jq .[] -r); do
742+
for LOCAL_RESOURCE_GROUP_NAME in $(az group list --subscription "${SUBSCRIPTION_ID}" --query "[? starts_with(@.name, '${RG_PREFIX}')].name" --output tsv); do
782743
# resource_id=$(az resource list --resource-group "${LOCAL_RESOURCE_GROUP_NAME}" --query [].id --output tsv)
783744
RESOURCE_GROUP_ID=$(az group show --subscription "${SUBSCRIPTION_ID}" --name "${LOCAL_RESOURCE_GROUP_NAME}" --query id -o tsv | tail -n1 | tr -d "[:cntrl:]")
784745
echo "Current tags for resource-group ${LOCAL_RESOURCE_GROUP_NAME}"

0 commit comments

Comments
 (0)