You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ! az resource delete --ids /subscriptions/${{ secrets.AZURE_SUBSCRIPTION_ID }}/providers/Microsoft.CognitiveServices/locations/uksouth/resourceGroups/${{ env.RESOURCE_GROUP_NAME }}/deletedAccounts/$openai_name --verbose; then
222
+
echo "Failed to purge openai resource: $openai_name"
223
+
else
224
+
echo "Purged the openai resource: $openai_name"
225
+
fi
226
+
227
+
# Purge MultiService Account Resource
228
+
echo "Purging the MultiService Account Resource..."
229
+
if ! az resource delete --ids /subscriptions/${{ secrets.AZURE_SUBSCRIPTION_ID }}/providers/Microsoft.CognitiveServices/locations/uksouth/resourceGroups/${{ env.RESOURCE_GROUP_NAME }}/deletedAccounts/$multiservice_account_name --verbose; then
230
+
echo "Failed to purge multiService account resource: $multiservice_account_name"
231
+
else
232
+
echo "Purged the multiService account resource: $multiservice_account_name"
233
+
fi
234
+
235
+
# Ensure KEYVAULTS is properly formatted as a comma-separated string
236
+
KEYVAULTS="${{ env.KEYVAULTS }}"
237
+
238
+
# Remove the surrounding square brackets, if they exist
239
+
stripped_keyvaults=$(echo "$KEYVAULTS" | sed 's/\[\|\]//g')
240
+
241
+
# Convert the comma-separated string into an array
242
+
IFS=',' read -r -a keyvault_array <<< "$stripped_keyvaults"
if ! az resource delete --ids /subscriptions/${{ secrets.AZURE_SUBSCRIPTION_ID }}/providers/Microsoft.CognitiveServices/locations/eastus2/resourceGroups/${{ env.RESOURCE_GROUP_NAME }}/deletedAccounts/$openai_name --verbose; then
200
+
echo "Failed to purge openai resource: $openai_name"
201
+
else
202
+
echo "Purged the openai resource: $openai_name"
203
+
fi
204
+
205
+
# Purge MultiService Account Resource
206
+
echo "Purging the MultiService Account Resource..."
207
+
if ! az resource delete --ids /subscriptions/${{ secrets.AZURE_SUBSCRIPTION_ID }}/providers/Microsoft.CognitiveServices/locations/eastus2/resourceGroups/${{ env.RESOURCE_GROUP_NAME }}/deletedAccounts/$multiservice_account_name --verbose; then
208
+
echo "Failed to purge multiService account resource: $multiservice_account_name"
209
+
else
210
+
echo "Purged the multiService account resource: $multiservice_account_name"
211
+
fi
212
+
213
+
# Ensure KEYVAULTS is properly formatted as a comma-separated string
214
+
KEYVAULTS="${{ env.KEYVAULTS }}"
215
+
216
+
# Remove the surrounding square brackets, if they exist
217
+
stripped_keyvaults=$(echo "$KEYVAULTS" | sed 's/\[\|\]//g')
218
+
219
+
# Convert the comma-separated string into an array
220
+
IFS=',' read -r -a keyvault_array <<< "$stripped_keyvaults"
0 commit comments