Skip to content

Instantly share code, notes, and snippets.

@asizikov
Created June 15, 2020 14:22
Show Gist options
  • Save asizikov/d64a7b2cf6c8c9c016c4887367042679 to your computer and use it in GitHub Desktop.
Save asizikov/d64a7b2cf6c8c9c016c4887367042679 to your computer and use it in GitHub Desktop.
#!/bin/sh
rg='rg-tags-demo'
rids=($(az resource list -g $rg --query '[].id' -o tsv)) || true
for rid in ${rids[@]}
do
az resource update --set tags.'ProvisionedBy'='manual' --id $rid || true
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment