From bf0532f293d9e2205afc0bb7ca2fcdace1379ef4 Mon Sep 17 00:00:00 2001 From: alex Date: Tue, 13 Jun 2023 14:04:41 +0200 Subject: [PATCH] 1 --- 03_azure.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 03_azure.yml 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