This file contains hidden or 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
| #!/usr/bin/env bash | |
| groups=$(az group list --query "[?contains(name,'bennage')].name") | |
| for row in $(echo "${groups}" | jq -r '.[]'); do | |
| _remove() { | |
| echo ${row} | |
| az group delete -y --no-wait -g ${row} | |
| } |
This file contains hidden or 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
| { | |
| "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | |
| "contentVersion": "1.0.0.0", | |
| "parameters": { | |
| "guid": { | |
| "type": "string", | |
| "defaultValue": "[newGuid()]" | |
| } | |
| }, | |
| "variables": { |
OlderNewer