[AWS] Fix SSM Parameter Store module when description is missing (#43020)

pull/43093/head
Ryan Brown 6 years ago committed by GitHub
parent 2e62e36590
commit 07927edfac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -181,7 +181,7 @@ def create_update_parameter(client, module):
if existing_parameter['Parameter']['Value'] != args['Value']:
(changed, response) = update_parameter(client, module, args)
if args['Description']:
if args.get('Description'):
# Description field not available from get_parameter function so get it from describe_parameters
describe_existing_parameter = None
try:

Loading…
Cancel
Save