[cloud] iam_role: fix docs & default state to present (#35184)

* iam_role: default state to present

* fix yaml
This commit is contained in:
René Moser 2018-01-23 00:51:11 +01:00 committed by Ryan Brown
parent b94198f9de
commit 390f65bd6a

View file

@ -1,18 +1,5 @@
#!/usr/bin/python #!/usr/bin/python
# This file is part of Ansible # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
ANSIBLE_METADATA = {'metadata_version': '1.1', ANSIBLE_METADATA = {'metadata_version': '1.1',
'status': ['preview'], 'status': ['preview'],
@ -26,12 +13,11 @@ short_description: Manage AWS IAM roles
description: description:
- Manage AWS IAM roles - Manage AWS IAM roles
version_added: "2.3" version_added: "2.3"
author: Rob White, @wimnat author: "Rob White (@wimnat)"
options: options:
path: path:
description: description:
- The path to the role. For more information about paths, see U(http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html). - The path to the role. For more information about paths, see U(http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html).
required: false
default: "/" default: "/"
name: name:
description: description:
@ -40,29 +26,28 @@ options:
description: description:
description: description:
- Provide a description of the new role - Provide a description of the new role
required: false
version_added: "2.5" version_added: "2.5"
assume_role_policy_document: assume_role_policy_document:
description: description:
- "The trust relationship policy document that grants an entity permission to assume the role. This parameter is required when state: present." - The trust relationship policy document that grants an entity permission to assume the role.
required: false - "This parameter is required when C(state=present)."
managed_policy: managed_policy:
description: description:
- A list of managed policy ARNs or, since Ansible 2.4, a list of either managed policy ARNs or friendly names. - A list of managed policy ARNs or, since Ansible 2.4, a list of either managed policy ARNs or friendly names.
To embed an inline policy, use M(iam_policy). To remove existing policies, use an empty list item. To embed an inline policy, use M(iam_policy). To remove existing policies, use an empty list item.
required: true required: true
aliases: ['managed_policies'] aliases: [ managed_policies ]
state: state:
description: description:
- Create or remove the IAM role - Create or remove the IAM role
required: true default: present
choices: [ 'present', 'absent' ] choices: [ present, absent ]
create_instance_profile: create_instance_profile:
description: description:
- Creates an IAM instance profile along with the role - Creates an IAM instance profile along with the role
type: bool type: bool
default: true default: yes
version_added: 2.5 version_added: "2.5"
requirements: [ botocore, boto3 ] requirements: [ botocore, boto3 ]
extends_documentation_fragment: extends_documentation_fragment:
- aws - aws
@ -72,33 +57,30 @@ extends_documentation_fragment:
EXAMPLES = ''' EXAMPLES = '''
# Note: These examples do not set authentication details, see the AWS Guide for details. # Note: These examples do not set authentication details, see the AWS Guide for details.
# Create a role with description - name: Create a role with description
- iam_role: iam_role:
name: mynewrole name: mynewrole
assume_role_policy_document: "{{ lookup('file','policy.json') }}" assume_role_policy_document: "{{ lookup('file','policy.json') }}"
description: This is My New Role description: This is My New Role
state: present
# Create a role and attach a managed policy called "PowerUserAccess" - name: "Create a role and attach a managed policy called 'PowerUserAccess'"
- iam_role: iam_role:
name: mynewrole name: mynewrole
assume_role_policy_document: "{{ lookup('file','policy.json') }}" assume_role_policy_document: "{{ lookup('file','policy.json') }}"
state: present
managed_policy: managed_policy:
- arn:aws:iam::aws:policy/PowerUserAccess - arn:aws:iam::aws:policy/PowerUserAccess
# Keep the role created above but remove all managed policies - name: Keep the role created above but remove all managed policies
- iam_role: iam_role:
name: mynewrole name: mynewrole
assume_role_policy_document: "{{ lookup('file','policy.json') }}" assume_role_policy_document: "{{ lookup('file','policy.json') }}"
state: present
managed_policy: managed_policy:
- -
# Delete the role - name: Delete the role
- iam_role: iam_role:
name: mynewrole name: mynewrole
assume_role_policy_document: "{{ lookup('file','policy.json') }}" assume_role_policy_document: "{{ lookup('file', 'policy.json') }}"
state: absent state: absent
''' '''
@ -373,12 +355,12 @@ def main():
argument_spec = ec2_argument_spec() argument_spec = ec2_argument_spec()
argument_spec.update( argument_spec.update(
dict( dict(
name=dict(required=True, type='str'), name=dict(type='str', required=True),
path=dict(default="/", type='str'), path=dict(type='str', default="/"),
assume_role_policy_document=dict(type='json'), assume_role_policy_document=dict(type='json'),
managed_policy=dict(type='list', aliases=['managed_policies']), managed_policy=dict(type='list', aliases=['managed_policies']),
state=dict(choices=['present', 'absent'], required=True), state=dict(type='str', choices=['present', 'absent'], default='present'),
description=dict(required=False, type='str'), description=dict(type='str'),
create_instance_profile=dict(type='bool', default=True) create_instance_profile=dict(type='bool', default=True)
) )
) )
@ -400,5 +382,6 @@ def main():
else: else:
destroy_role(connection, module) destroy_role(connection, module)
if __name__ == '__main__': if __name__ == '__main__':
main() main()