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 checkpull/4420/head
parent
1891827dfa
commit
afbf72cfeb
|
@ -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…
Reference in New Issue