Some checks failed
Gitea Actions Demo Training / Explore-Gitea-Actions (push) Failing after 14s
10 lines
339 B
Bash
Executable File
10 lines
339 B
Bash
Executable File
#!/bin/bash
|
|
|
|
resource_group="workshop-rg"
|
|
|
|
# Create a group that bundles all
|
|
time az group create --name ${resource_group} --location westeurope
|
|
|
|
# Use the template and parameter files to delete resources within the group
|
|
time az deployment group create --resource-group ${resource_group} --template-file azuredelete.json --mode complete
|