diff --git a/03_azure.yml b/03_azure.yml new file mode 100644 index 0000000..3836511 --- /dev/null +++ b/03_azure.yml @@ -0,0 +1,14 @@ +--- +- name: Remove Webserver + hosts: localhost + connection: local + vars: + user: alex + + tasks: + - name: Delete resource group + azure_rm_resourcegroup: + name: "webserver_{{ user }}" + location: northeurope + state: absent + force_delete_nonempty: true