mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
minor spelling changes
This commit is contained in:
committed by
Brian Coca
parent
054a3fccf8
commit
0b8011436d
@@ -77,7 +77,7 @@ notes:
|
||||
pause to delay further playbook execution until the instance is reachable,
|
||||
if necessary.
|
||||
- This module returns multiple changed statuses on disassociation or release.
|
||||
It returns an overall status based on any changes occuring. It also returns
|
||||
It returns an overall status based on any changes occurring. It also returns
|
||||
individual changed statuses for disassociation and release.
|
||||
'''
|
||||
|
||||
|
||||
@@ -122,7 +122,7 @@ def create_scaling_policy(connection, module):
|
||||
if getattr(policy, 'min_adjustment_step') != module.params.get('min_adjustment_step'):
|
||||
changed = True
|
||||
|
||||
# set the min adjustment step incase the user decided to change their
|
||||
# set the min adjustment step in case the user decided to change their
|
||||
# adjustment type to percentage
|
||||
setattr(policy, 'min_adjustment_step', module.params.get('min_adjustment_step'))
|
||||
|
||||
|
||||
@@ -582,7 +582,7 @@ def main():
|
||||
elif inst is not None:
|
||||
volume, changed = attach_volume(module, ec2, volume, inst)
|
||||
|
||||
# Add device, volume_id and volume_type parameters separately to maintain backward compatability
|
||||
# Add device, volume_id and volume_type parameters separately to maintain backward compatibility
|
||||
volume_info = get_volume_info(volume, state)
|
||||
module.exit_json(changed=changed, volume=volume_info, device=volume_info['attachment_set']['device'], volume_id=volume_info['id'], volume_type=volume_info['type'])
|
||||
elif state == 'absent':
|
||||
|
||||
@@ -960,7 +960,7 @@ def remove(client, nat_gateway_id, wait=False, wait_timeout=0,
|
||||
changed = True
|
||||
success = True
|
||||
err_msg = (
|
||||
'NAT gateway {0} is in a deleting state. Delete was successfull'
|
||||
'NAT gateway {0} is in a deleting state. Delete was successful'
|
||||
.format(nat_gateway_id)
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user