Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
fotto committed Feb 28, 2021
1 parent f0c4663 commit 95539ef
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
8 changes: 4 additions & 4 deletions plugins/modules/mq_broker.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
broker_id: "{{ result.broker['BrokerId'] }}"
- name: use mq_broker_info to wait until broker is ready
amazon.aws.mq_broker_info:
broker_id: {{ broker_id }}"
broker_id: "{{ broker_id }}"
region: "{{ aws_region }}"
register: result
until: "result.broker['BrokerState'] == 'RUNNING'"
Expand All @@ -167,9 +167,9 @@
kms_key_id: 'my-precreted-key-id'
engine_type: 'ACTIVEMQ'
maintenance_window_start_time:
'DayOfWeek': 'MONDAY'
'TimeOfDay': '03:15',
'TimeZone': 'Europe/Berlin'
DayOfWeek: 'MONDAY'
TimeOfDay: '03:15'
TimeZone: 'Europe/Berlin'
publicly_accessible: true
storage_type: 'EFS'
security_groups:
Expand Down
7 changes: 4 additions & 3 deletions plugins/modules/mq_broker_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@
version_added: 0.9.0
short_description: Update Amazon MQ broker configuration
description:
- Update configuration for an MQ broker
- if new configuration differs from the current one: a new configuration is created and the new version is assigned to the broker
- Optionally allows broker reboot to make changes effective immediately
- "Update configuration for an MQ broker."
- "If new configuration differs from the current one: a new configuration "
- "is created and the new version is assigned to the broker."
- "Optionally allows broker reboot to make changes effective immediately"
author: FCO (@fotto)
requirements:
- boto3
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/mq_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
description:
- just echos the username
- "only present when state=present"
type: string
type: str
returned: success
'''

Expand Down

0 comments on commit 95539ef

Please sign in to comment.