Skip to content

Commit

Permalink
resolve test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
falcon78921 authored and James McClune committed Oct 17, 2021
1 parent 25cbb6c commit 2ef71f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/modules/sqs_queue.py
Expand Up @@ -303,10 +303,10 @@ def create_or_update_sqs_queue(client, module):

# Create a dict() to hold attributes that will be passed to boto3
create_attributes = {}

if not queue_url:
if is_fifo:
create_attributes['FifoQueue'] = True
create_attributes['FifoQueue'] = "True"
if kmsMasterKeyId:
create_attributes['KmsMasterKeyId'] = kmsMasterKeyId
result['changed'] = True
Expand Down Expand Up @@ -477,4 +477,4 @@ def main():


if __name__ == '__main__':
main()
main()

0 comments on commit 2ef71f6

Please sign in to comment.