summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Coca <bcoca@ansible.com>2015-07-13 19:29:51 -0400
committerBrian Coca <bcoca@ansible.com>2015-07-13 19:29:51 -0400
commit91690b67a1335ec1324bc55d97d0948b23af800e (patch)
tree90e6e5df27d03d814726cc73110556e048f55b01
parent8a89f4afe452868eccdb8eab841cb501b7bf0548 (diff)
parent998bba4a211dcad5a50cef9f048ccf43aa1c2905 (diff)
downloadansible-modules-extras-91690b67a1335ec1324bc55d97d0948b23af800e.tar.gz
Merge pull request #168 from bekelchik/bekelchik
New sts_assume_role module
-rw-r--r--cloud/amazon/sts_assume_role.py154
1 files changed, 154 insertions, 0 deletions
diff --git a/cloud/amazon/sts_assume_role.py b/cloud/amazon/sts_assume_role.py
new file mode 100644
index 00000000..7eec28b8
--- /dev/null
+++ b/cloud/amazon/sts_assume_role.py
@@ -0,0 +1,154 @@
+#!/usr/bin/python
+# This file is part of Ansible
+#
+# 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/>.
+
+DOCUMENTATION = '''
+---
+module: sts_assume_role
+short_description: Assume a role using AWS Security Token Service and obtain temporary credentials
+description:
+ - Assume a role using AWS Security Token Service and obtain temporary credentials
+version_added: "2.0"
+author: Boris Ekelchik (@bekelchik)
+options:
+ role_arn:
+ description:
+ - The Amazon Resource Name (ARN) of the role that the caller is assuming (http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html#Identifiers_ARNs)
+ required: true
+ role_session_name:
+ description:
+ - Name of the role's session - will be used by CloudTrail
+ required: true
+ policy:
+ description:
+ - Supplemental policy to use in addition to assumed role's policies.
+ required: false
+ default: null
+ duration_seconds:
+ description:
+ - The duration, in seconds, of the role session. The value can range from 900 seconds (15 minutes) to 3600 seconds (1 hour). By default, the value is set to 3600 seconds.
+ required: false
+ default: null
+ external_id:
+ description:
+ - A unique identifier that is used by third parties to assume a role in their customers' accounts.
+ required: false
+ default: null
+ mfa_serial_number:
+ description:
+ - he identification number of the MFA device that is associated with the user who is making the AssumeRole call.
+ required: false
+ default: null
+ mfa_token:
+ description:
+ - The value provided by the MFA device, if the trust policy of the role being assumed requires MFA.
+ required: false
+ default: null
+notes:
+ - In order to use the assumed role in a following playbook task you must pass the access_key, access_secret and access_token
+extends_documentation_fragment: aws
+'''
+
+EXAMPLES = '''
+# Note: These examples do not set authentication details, see the AWS Guide for details.
+
+# Assume an existing role (more details: http://docs.aws.amazon.com/STS/latest/APIReference/API_AssumeRole.html)
+sts_assume_role:
+ role_arn: "arn:aws:iam::123456789012:role/someRole"
+ session_name: "someRoleSession"
+register: assumed_role
+
+# Use the assumed role above to tag an instance in account 123456789012
+ec2_tag:
+ aws_access_key: "{{ assumed_role.sts_creds.access_key }}"
+ aws_secret_key: "{{ assumed_role.sts_creds.secret_key }}"
+ security_token: "{{ assumed_role.sts_creds.session_token }}"
+ resource: i-xyzxyz01
+ state: present
+ tags:
+ MyNewTag: value
+
+'''
+
+import sys
+import time
+
+try:
+ import boto.sts
+ from boto.exception import BotoServerError
+ HAS_BOTO = True
+except ImportError:
+ HAS_BOTO = False
+
+
+def assume_role_policy(connection, module):
+
+ role_arn = module.params.get('role_arn')
+ role_session_name = module.params.get('role_session_name')
+ policy = module.params.get('policy')
+ duration_seconds = module.params.get('duration_seconds')
+ external_id = module.params.get('external_id')
+ mfa_serial_number = module.params.get('mfa_serial_number')
+ mfa_token = module.params.get('mfa_token')
+ changed = False
+
+ try:
+ assumed_role = connection.assume_role(role_arn, role_session_name, policy, duration_seconds, external_id, mfa_serial_number, mfa_token)
+ changed = True
+ except BotoServerError, e:
+ module.fail_json(msg=e)
+
+ module.exit_json(changed=changed, sts_creds=assumed_role.credentials.__dict__, sts_user=assumed_role.user.__dict__)
+
+def main():
+ argument_spec = ec2_argument_spec()
+ argument_spec.update(
+ dict(
+ role_arn = dict(required=True, default=None),
+ role_session_name = dict(required=True, default=None),
+ duration_seconds = dict(required=False, default=None, type='int'),
+ external_id = dict(required=False, default=None),
+ policy = dict(required=False, default=None),
+ mfa_serial_number = dict(required=False, default=None),
+ mfa_token = dict(required=False, default=None)
+ )
+ )
+
+ module = AnsibleModule(argument_spec=argument_spec)
+
+ if not HAS_BOTO:
+ module.fail_json(msg='boto required for this module')
+
+ region, ec2_url, aws_connect_params = get_aws_connection_info(module)
+
+ if region:
+ try:
+ connection = connect_to_aws(boto.sts, region, **aws_connect_params)
+ except (boto.exception.NoAuthHandlerFound, StandardError), e:
+ module.fail_json(msg=str(e))
+ else:
+ module.fail_json(msg="region must be specified")
+
+ try:
+ assume_role_policy(connection, module)
+ except BotoServerError, e:
+ module.fail_json(msg=e)
+
+
+# import module snippets
+from ansible.module_utils.basic import *
+from ansible.module_utils.ec2 import *
+
+main()