mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-01 05:49:09 -07:00
Fixes idempotency check for partial configurations (#41941)
- Previous PR would overwrite new and existing values improperly
This commit is contained in:
parent
4e275a4ba8
commit
7ab3f755ce
2 changed files with 23 additions and 4 deletions
|
@ -66,7 +66,18 @@
|
|||
timezone: America/Chicago
|
||||
delegate_to: localhost
|
||||
register: create_net_wireless
|
||||
|
||||
|
||||
- name: Create network with type wireless and check for idempotency
|
||||
meraki_network:
|
||||
auth_key: '{{ auth_key }}'
|
||||
state: present
|
||||
org_name: '{{test_org_name}}'
|
||||
net_name: IntTestNetworkWireless
|
||||
type: wireless
|
||||
timezone: America/Chicago
|
||||
delegate_to: localhost
|
||||
register: create_net_wireless_idempotent
|
||||
|
||||
- name: Create network with type combined
|
||||
meraki_network:
|
||||
auth_key: '{{ auth_key }}'
|
||||
|
@ -142,6 +153,7 @@
|
|||
- '"IntTestNetworkSwitch" in create_net_switch.data.name'
|
||||
- '"IntTestNetworkSwitchOrgID" in create_net_switch_org_id.data.name'
|
||||
- '"IntTestNetworkWireless" in create_net_wireless.data.name'
|
||||
- create_net_wireless_idempotent.changed == False
|
||||
- '"first_tag" in create_net_tag.data.tags'
|
||||
- '"second_tag" in create_net_tags.data.tags'
|
||||
- '"third_tag" in create_net_modified.data.tags'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue