14 lines
454 B
YAML
14 lines
454 B
YAML
---
|
|
# tasks file for azure-createRG
|
|
- name: Create a resource group
|
|
azure.azcollection.azure_rm_resourcegroup:
|
|
name: "{{ RG_name }}"
|
|
location: westeurope
|
|
tags:
|
|
Division: "{{ tag_division }}"
|
|
Scope: "{{ tag_scope }}"
|
|
Organizational: "{{ tag_organizational }}"
|
|
ApplicationName: "{{ tag_applicationname }}"
|
|
Environment: "{{ tag_environment }}"
|
|
BusinessApplicationOwner: "{{ tag_businessapplicationowner }}"
|