author fix
This commit is contained in:
parent
19e7e99470
commit
e2773f7554
1 changed files with 5 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/python
|
||||||
# This file is part of Ansible
|
# This file is part of Ansible
|
||||||
#
|
#
|
||||||
# Ansible is free software: you can redistribute it and/or modify
|
# Ansible is free software: you can redistribute it and/or modify
|
||||||
|
@ -19,7 +19,7 @@ module: iam_policy
|
||||||
short_description: Manage IAM policies for users, groups, and roles
|
short_description: Manage IAM policies for users, groups, and roles
|
||||||
description:
|
description:
|
||||||
- Allows uploading or removing IAM policies for IAM users, groups or roles.
|
- Allows uploading or removing IAM policies for IAM users, groups or roles.
|
||||||
version_added: "1.9"
|
version_added: "2.0"
|
||||||
options:
|
options:
|
||||||
iam_type:
|
iam_type:
|
||||||
description:
|
description:
|
||||||
|
@ -69,11 +69,11 @@ options:
|
||||||
default: null
|
default: null
|
||||||
aliases: [ 'ec2_access_key', 'access_key' ]
|
aliases: [ 'ec2_access_key', 'access_key' ]
|
||||||
|
|
||||||
|
|
||||||
requirements: [ "boto" ]
|
requirements: [ "boto" ]
|
||||||
notes:
|
notes:
|
||||||
- 'Currently boto does not support the removal of Managed Policies, the module will not work removing/adding managed policies.'
|
- 'Currently boto does not support the removal of Managed Policies, the module will not work removing/adding managed policies.'
|
||||||
author: Jonathan I. Davila and Paul Seiffert
|
author: Jonathan I. Davila
|
||||||
|
extends_documentation_fragment: aws
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
|
@ -322,4 +322,4 @@ def main():
|
||||||
from ansible.module_utils.basic import *
|
from ansible.module_utils.basic import *
|
||||||
from ansible.module_utils.ec2 import *
|
from ansible.module_utils.ec2 import *
|
||||||
|
|
||||||
main()
|
main()
|
||||||
|
|
Loading…
Reference in a new issue