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.

13 lines
296 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. ansible-playbook generate-templates.yml
  9. azure group deployment create -g "$AZURE_RESOURCE_GROUP" -f ./.generated/clear-rg.json -m Complete