From cccef7b135918081f34073bc45daa7ac5101cdd9 Mon Sep 17 00:00:00 2001 From: whiter Date: Thu, 15 Oct 2015 12:58:03 +1100 Subject: [PATCH] Remove access_key and secret_key as these are provided by aws doc fragment Remove ec2 doc fragment as region is not required for IAM --- cloud/amazon/iam.py | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/cloud/amazon/iam.py b/cloud/amazon/iam.py index 8864cb10a6f..ff75dcc1bb0 100644 --- a/cloud/amazon/iam.py +++ b/cloud/amazon/iam.py @@ -83,26 +83,12 @@ options: choices: ['always', 'on_create'] description: - C(always) will update passwords if they differ. C(on_create) will only set the password for newly created users. - aws_secret_key: - description: - - AWS secret key. If not set then the value of the AWS_SECRET_KEY environment variable is used. - required: false - default: null - aliases: [ 'ec2_secret_key', 'secret_key' ] - aws_access_key: - description: - - AWS access key. If not set then the value of the AWS_ACCESS_KEY environment variable is used. - required: false - default: null - aliases: [ 'ec2_access_key', 'access_key' ] notes: - 'Currently boto does not support the removal of Managed Policies, the module will error out if your user/group/role has managed policies when you try to do state=absent. They will need to be removed manually.' author: - "Jonathan I. Davila (@defionscode)" - "Paul Seiffert (@seiffert)" -extends_documentation_fragment: - - aws - - ec2 +extends_documentation_fragment: aws ''' EXAMPLES = '''