|
|
|
- name: Prepare random number
|
|
|
|
set_fact:
|
|
|
|
nsgname: "{{ resource_group | hash('md5') | truncate(7, True, '') }}{{ 1000 | random }}"
|
|
|
|
storageaccountname: "stacc{{ resource_group | hash('md5') | truncate(7, True, '') }}{{ 1000 | random }}"
|
|
|
|
run_once: yes
|
|
|
|
|
|
|
|
- name: Call REST API
|
|
|
|
azure_rm_resource:
|
|
|
|
api_version: '2018-02-01'
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
provider: network
|
|
|
|
resource_type: networksecuritygroups
|
|
|
|
resource_name: "{{ nsgname }}"
|
|
|
|
body:
|
|
|
|
location: eastus
|
|
|
|
idempotency: yes
|
|
|
|
register: output
|
|
|
|
|
|
|
|
- name: Assert that something has changed
|
|
|
|
assert:
|
|
|
|
that: output.changed
|
|
|
|
|
|
|
|
- name: Call REST API
|
|
|
|
azure_rm_resource:
|
|
|
|
api_version: '2018-02-01'
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
provider: network
|
|
|
|
resource_type: networksecuritygroups
|
|
|
|
resource_name: "{{ nsgname }}"
|
|
|
|
body:
|
|
|
|
location: eastus
|
|
|
|
idempotency: yes
|
|
|
|
register: output
|
|
|
|
|
|
|
|
- name: Assert that nothing has changed
|
|
|
|
assert:
|
|
|
|
that: not output.changed
|
|
|
|
|
|
|
|
- name: Call REST API
|
|
|
|
azure_rm_resource:
|
|
|
|
api_version: '2018-02-01'
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
provider: network
|
|
|
|
resource_type: networksecuritygroups
|
|
|
|
resource_name: "{{ nsgname }}"
|
|
|
|
body:
|
|
|
|
location: eastus
|
|
|
|
tags:
|
|
|
|
a: "abc"
|
|
|
|
b: "cde"
|
|
|
|
idempotency: yes
|
|
|
|
register: output
|
|
|
|
|
|
|
|
- name: Assert that something has changed
|
|
|
|
assert:
|
|
|
|
that: output.changed
|
|
|
|
|
|
|
|
- name: Try to get information about account
|
|
|
|
azure_rm_resource_facts:
|
|
|
|
api_version: '2018-02-01'
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
provider: network
|
|
|
|
resource_type: networksecuritygroups
|
|
|
|
resource_name: "{{ nsgname }}"
|
|
|
|
register: output
|
|
|
|
|
|
|
|
- name: Create storage account for Registry
|
|
|
|
azure_rm_storageaccount:
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
name: "{{ storageaccountname }}"
|
|
|
|
type: Standard_LRS
|
|
|
|
|
|
|
|
- name: Try to storage keys -- special case when subresource part has no name
|
|
|
|
azure_rm_resource:
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
provider: storage
|
|
|
|
resource_type: storageAccounts
|
|
|
|
resource_name: "{{ storageaccountname }}"
|
|
|
|
subresource:
|
|
|
|
- type: listkeys
|
|
|
|
api_version: '2018-03-01-preview'
|
|
|
|
method: POST
|
|
|
|
register: keys
|
|
|
|
|
|
|
|
- name: Assert that key was returned
|
|
|
|
assert:
|
|
|
|
that: keys['response']['keys'][0]['value'] | length > 0
|