mirror of https://github.com/ansible/ansible.git
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.
119 lines
3.2 KiB
YAML
119 lines
3.2 KiB
YAML
- name: Create an availability set with default options
|
|
azure_rm_availabilityset:
|
|
name: myavailabilityset1
|
|
resource_group: "{{ resource_group }}"
|
|
tags:
|
|
tag1: testtag
|
|
register: results
|
|
|
|
- assert:
|
|
that: results.changed
|
|
|
|
- name: Create an availability set with advanced options
|
|
azure_rm_availabilityset:
|
|
name: myavailabilityset2
|
|
resource_group: "{{ resource_group }}"
|
|
platform_update_domain_count: 5
|
|
platform_fault_domain_count: 2
|
|
sku: Aligned
|
|
register: results
|
|
|
|
- assert:
|
|
that: results.changed
|
|
|
|
- name: Modify availabilty set immutable options - no changes, fail for immutable options
|
|
azure_rm_availabilityset:
|
|
name: myavailabilityset2
|
|
resource_group: "{{ resource_group }}"
|
|
platform_update_domain_count: 2
|
|
platform_fault_domain_count: 2
|
|
sku: Aligned
|
|
register: results
|
|
ignore_errors: yes
|
|
|
|
- assert:
|
|
that:
|
|
- not results.changed
|
|
- results.msg == 'You tried to change platform_update_domain_count but is was unsuccessful. An Availability Set is immutable, except tags'
|
|
|
|
- name: Modify availabilty set immutable options and set tags - change tags and fail for immutable options
|
|
azure_rm_availabilityset:
|
|
name: myavailabilityset2
|
|
resource_group: "{{ resource_group }}"
|
|
platform_update_domain_count: 2
|
|
platform_fault_domain_count: 2
|
|
sku: Aligned
|
|
tags:
|
|
test1: modified
|
|
register: results
|
|
ignore_errors: yes
|
|
|
|
- assert:
|
|
that:
|
|
- not results.changed
|
|
- results.msg == 'You tried to change platform_update_domain_count but is was unsuccessful. An Availability Set is immutable, except tags'
|
|
|
|
- name: Modify availabilty set options to update tags
|
|
azure_rm_availabilityset:
|
|
name: myavailabilityset2
|
|
resource_group: "{{ resource_group }}"
|
|
platform_update_domain_count: 5
|
|
platform_fault_domain_count: 2
|
|
sku: Aligned
|
|
tags:
|
|
test2: modified
|
|
register: results
|
|
|
|
- assert:
|
|
that:
|
|
- results.state.tags.test2 == 'modified'
|
|
|
|
- name: Create availability set with incorrect fault domain parameter
|
|
azure_rm_availabilityset:
|
|
name: myavailabilityset3
|
|
resource_group: "{{ resource_group }}"
|
|
platform_update_domain_count: 5
|
|
platform_fault_domain_count: 4
|
|
sku: Aligned
|
|
register: results
|
|
ignore_errors: yes
|
|
|
|
- assert:
|
|
{ that: "'The specified fault domain count 4 must fall in the range 1 to' in results['msg']" }
|
|
|
|
- name: Test check_mode
|
|
azure_rm_availabilityset:
|
|
name: myavailabilityset2
|
|
resource_group: "{{ resource_group }}"
|
|
platform_update_domain_count: 5
|
|
platform_fault_domain_count: 2
|
|
sku: Aligned
|
|
tags:
|
|
checktest1: modified1
|
|
checktest2: modified2
|
|
check_mode: yes
|
|
register: results
|
|
|
|
- assert:
|
|
that:
|
|
- not results.changed
|
|
- results.state.tags.checktest1 == 'modified1'
|
|
|
|
- name: Delete an availability set
|
|
azure_rm_availabilityset:
|
|
name: myavailabilityset1
|
|
resource_group: "{{ resource_group }}"
|
|
state: absent
|
|
|
|
- name: Delete an availability set
|
|
azure_rm_availabilityset:
|
|
name: myavailabilityset2
|
|
resource_group: "{{ resource_group }}"
|
|
state: absent
|
|
|
|
- name: Delete an availability set
|
|
azure_rm_availabilityset:
|
|
name: myavailabilityset3
|
|
resource_group: "{{ resource_group }}"
|
|
state: absent
|