You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
436 B

  1. #!/usr/bin/env bash
  2. set -e
  3. AZURE_RESOURCE_GROUP="$1"
  4. if [ "$AZURE_RESOURCE_GROUP" == "" ]; then
  5. echo "AZURE_RESOURCE_GROUP is missing"
  6. exit 1
  7. fi
  8. if az &>/dev/null; then
  9. echo "azure cli 2.0 found, using it instead of 1.0"
  10. ./clear-rg_2.sh "$AZURE_RESOURCE_GROUP"
  11. else
  12. ansible-playbook generate-templates.yml
  13. azure group deployment create -g "$AZURE_RESOURCE_GROUP" -f ./.generated/clear-rg.json -m Complete
  14. fi