mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
meraki_network - Fix enabling my.meraki.com (#45352)
* Fix enabling my.meraki.com - A parameter of "no" wouldn't be picked up - Check for False in addition to whether it exists * Clean up disable_my_meraki parameter check
This commit is contained in:
parent
1891827dfa
commit
afbf72cfeb
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ def main():
|
|||
payload['tags'] = construct_tags(meraki.params['tags'])
|
||||
if meraki.params['timezone']:
|
||||
payload['timeZone'] = meraki.params['timezone']
|
||||
if meraki.params['disable_my_meraki']:
|
||||
if meraki.params['disable_my_meraki'] is not None:
|
||||
payload['disableMyMerakiCom'] = meraki.params['disable_my_meraki']
|
||||
|
||||
# manipulate or modify the state as needed (this is going to be the
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue