You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/azure_rm_virtualmachineimag.../tasks/main.yml

44 lines
919 B
YAML

- name: set location
set_fact:
location: eastus
- name: Get facts for a specific image
azure_rm_virtualmachineimage_facts:
location: "{{ location }}"
publisher: OpenLogic
offer: CentOS
sku: '7.3'
version: '7.3.20170707'
register: output
- assert:
that: azure_vmimages | length == 1
- name: List available versions
azure_rm_virtualmachineimage_facts:
location: "{{ location }}"
publisher: OpenLogic
offer: CentOS
sku: '7.3'
register: output
- assert:
that: azure_vmimages | length > 0
- name: List available offers
azure_rm_virtualmachineimage_facts:
location: "{{ location }}"
publisher: OpenLogic
register: output
- assert:
that: azure_vmimages | length > 0
- name: List available publishers
azure_rm_virtualmachineimage_facts:
location: "{{ location }}"
register: output
- assert:
that: azure_vmimages | length > 0