-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
review更改 #91
Open
rockzhu
wants to merge
4
commits into
alibaba:master
Choose a base branch
from
rockzhu:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
review更改 #91
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
195 changes: 195 additions & 0 deletions
195
lib/ansible/modules/cloud/alicloud/alicloud_access_key.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,195 @@ | ||
#!/usr/bin/python | ||
# coding=utf-8 | ||
# Copyright (c) 2017 Alibaba Group Holding Limited. Zhuwei <[email protected]> | ||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) | ||
# | ||
# 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/. | ||
|
||
from __future__ import absolute_import, division, print_function | ||
metaclass = type | ||
|
||
ANSIBLE_METADATA = {'metadata_version': '1.1', | ||
'status': ['preview'], | ||
'supported_by': 'community'} | ||
|
||
DOCUMENTATION = ''' | ||
--- | ||
module: alicloud_access_key | ||
short_description: ansible can manage aliyun access_key through this module | ||
version_added: "2.6" | ||
description: | ||
- This module allows the user to manage access-keys. Includes those commands:'present', 'absent' | ||
options: | ||
state: | ||
description: | ||
- Create, delete or update the access_key of the user. | ||
default: 'present' | ||
choices: [ 'present', 'absent'] | ||
user_name: | ||
description: | ||
- The user name. A name is created from the specified user. | ||
required: true | ||
aliases: [ 'name' ] | ||
access_key_id: | ||
description: | ||
- The symbol to identity the access_key. | ||
is_active: | ||
description: | ||
- The access_key's status can be True or False. | ||
type: bool | ||
default: 'True' | ||
extends_documentation_fragment: | ||
- alicloud | ||
author: | ||
- Zhu Wei (@zhuweif) | ||
''' | ||
|
||
EXAMPLES = ''' | ||
# | ||
# AccessKey Management | ||
# | ||
|
||
# basic provisioning example to manage access_key | ||
- name: basic provisioning example | ||
hosts: localhost | ||
connection: local | ||
vars: | ||
alicloud_access_key: <your-alicloud-access-key-id> | ||
alicloud_secret_key: <your-alicloud-access-secret-key> | ||
alicloud_region: cn-beijing | ||
|
||
tasks: | ||
- name: create access_key | ||
alicloud_ram_access_key: | ||
alicloud_access_key: '{{ alicloud_access_key }}' | ||
alicloud_secret_key: '{{ alicloud_secret_key }}' | ||
alicloud_region: '{{ alicloud_region }}' | ||
user_name: '{{ user_name }}' | ||
state: 'present' | ||
register: result | ||
- debug: var=result | ||
|
||
- name: delete access_key | ||
alicloud_ram_access_key: | ||
alicloud_access_key: '{{ alicloud_access_key }}' | ||
alicloud_secret_key: '{{ alicloud_secret_key }}' | ||
alicloud_region: '{{ alicloud_region }}' | ||
user_name: '{{ user_name }}' | ||
access_key_id: '{{ access_key_id }}' | ||
state: 'absent' | ||
register: result | ||
- debug: var=result | ||
''' | ||
|
||
RETURN = ''' | ||
access_key: | ||
description: the access_key's headers after create access_key | ||
returned: on present | ||
type: dict | ||
sample: { | ||
"access_key_id": "abc12345", | ||
"access_key_secret": "abc12345", | ||
"status": "Active", | ||
"create_status": "2015-01-23T12:33:18Z" | ||
} | ||
''' | ||
|
||
from ansible.module_utils.basic import AnsibleModule | ||
from ansible.module_utils.alicloud_ecs import ecs_argument_spec,ram_connect | ||
|
||
HAS_FOOTMARK = False | ||
|
||
try: | ||
from footmark.exception import ECSResponseError | ||
HAS_FOOTMARK = True | ||
except ImportError: | ||
HAS_FOOTMARK = False | ||
|
||
def ali_access_key_create(module,ram): | ||
#user_name | ||
required_vars = ['user_name'] | ||
valid_vars = ['access_key_id', 'is_active'] | ||
params=validate_parameters(required_vars, valid_vars, module) | ||
changed = False | ||
try: | ||
if params['access_key_id']: | ||
changed=ram.update_access_key(user_name=module.params.get('user_name'), access_key_id=params['access_key_id'], is_active=params['is_active']) | ||
module.exit_json(changed=changed) | ||
else: | ||
result = ram.create_access_key(user_name=module.params.get('user_name')) | ||
module.exit_json(changed=changed, msg=result) | ||
except Exception as e: | ||
module.fail_json(msg="Create or update access_key got an error: {0}".format(e)) | ||
|
||
|
||
def ali_access_key_del(module, ram): | ||
required_vars = ['user_name', 'access_key_id'] | ||
valid_vars = [''] | ||
validate_parameters(required_vars, valid_vars, module) | ||
changed = False | ||
try: | ||
changed=ram.delete_access_key(user_name=module.params.get('user_name'), access_key_id=module.params.get('access_key_id')) | ||
except Exception as e: | ||
module.fail_json(msg="Failed to delete access_key {0} with error {1}".format(module.params.get('access_key_id'),e)) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 格式问题,最后e之前应该有一个空格 |
||
module.exit_json(changed=changed) | ||
|
||
|
||
def validate_parameters(required_vars, valid_vars, module): | ||
state = module.params.get('state') | ||
for v in required_vars: | ||
if not module.params.get(v): | ||
module.fail_json(msg="Parameter {0} required for {1} state".format(v, state)) | ||
optional_params = { | ||
'access_key_id': 'access_key_id', | ||
'is_active': 'is_active' | ||
} | ||
|
||
params = {} | ||
for (k, v) in optional_params.items(): | ||
if module.params.get(k) is not None and k not in required_vars: | ||
if k in valid_vars: | ||
params[v] = module.params[k] | ||
else: | ||
if module.params.get(k) is False: | ||
pass | ||
else: | ||
module.fail_json(msg="Parameter {0} is not valid for {1} command".format(k, state)) | ||
return params | ||
|
||
|
||
def main(): | ||
argument_spec = ecs_argument_spec() | ||
argument_spec.update(dict( | ||
state=dict(type='str', default='present', choices=[ | ||
'present', 'absent' | ||
]), | ||
user_name = dict(type='str', required=True), | ||
access_key_id = dict(type='str'), | ||
is_active = dict(type='bool', default=True), | ||
)) | ||
if HAS_FOOTMARK is False: | ||
module.fail_json(msg="Package 'footmark' required for the module alicloud_access_key.") | ||
invocations = { | ||
'present': ali_access_key_create, | ||
'absent': ali_access_key_del, | ||
} | ||
module = AnsibleModule(argument_spec=argument_spec) | ||
ram = ram_connect(module) | ||
invocations[module.params.get('state')](module, ram) | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |
143 changes: 143 additions & 0 deletions
143
lib/ansible/modules/cloud/alicloud/alicloud_access_key_facts.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
#!/usr/bin/python | ||
# coding=utf-8 | ||
# Copyright (c) 2017 Alibaba Group Holding Limited. Zhuwei <[email protected]> | ||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) | ||
# | ||
# 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/. | ||
|
||
|
||
from __future__ import absolute_import, division, print_function | ||
__metaclass__ = type | ||
|
||
ANSIBLE_METADATA = {'metadata_version': '1.1', | ||
'status': ['preview'], | ||
'supported_by': 'community'} | ||
|
||
DOCUMENTATION = ''' | ||
--- | ||
module: alicloud_access_key_facts | ||
version_added: "2.5" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. change it to 2.6 |
||
short_description: Gather facts on access_keys of Alibaba Cloud Ram User. | ||
description: | ||
- This module fetches data from the Open API in Alicloud. | ||
The module must be called by a user name. | ||
|
||
options: | ||
user_name: | ||
description: | ||
- A name of a ram user. | ||
author: | ||
- Zhu Wei (@zhuweif) | ||
requirements: | ||
- "python >= 2.6" | ||
- "footmark" | ||
extends_documentation_fragment: | ||
- alicloud | ||
''' | ||
|
||
EXAMPLES = ''' | ||
# Fetch disk details according to setting different filters | ||
- name: Fetch access_key details example | ||
hosts: localhost | ||
vars: | ||
alicloud_access_key: <your-alicloud-access-key> | ||
alicloud_secret_key: <your-alicloud-secret-key> | ||
alicloud_region: cn-beijing | ||
user_name: | ||
- [email protected] | ||
tasks: | ||
- name: Find all access_keys of a ram user | ||
alicloud_access_key_facts: | ||
alicloud_access_key: '{{ alicloud_access_key }}' | ||
alicloud_secret_key: '{{ alicloud_secret_key }}' | ||
alicloud_region: '{{ alicloud_region }}' | ||
register: access_keys_by_user | ||
- debug: var=access_keys_by_user | ||
|
||
''' | ||
|
||
RETURN = ''' | ||
access_keys: | ||
description: Details about the access_key. | ||
returned: when success | ||
type: list | ||
sample: [ | ||
{ | ||
"access_key_id": "1234567", | ||
"status": "Active", | ||
"create_date": "2015-01-23T12:33:18Z" | ||
}, | ||
{ | ||
"access_key_id": "45678910", | ||
"status": "Inactive", | ||
"create_date": "2015-03-24T21:12:21Z" | ||
} | ||
] | ||
total: | ||
description: The number of all access_keys of the ram user. | ||
returned: when success | ||
type: int | ||
sample: 2 | ||
''' | ||
|
||
from ansible.module_utils.basic import AnsibleModule | ||
from ansible.module_utils.alicloud_ecs import ecs_argument_spec,ram_connect | ||
|
||
HAS_FOOTMARK = False | ||
|
||
try: | ||
from footmark.exception import ECSResponseError | ||
HAS_FOOTMARK = True | ||
except ImportError: | ||
HAS_FOOTMARK = False | ||
|
||
|
||
def get_info(accesskey): | ||
""" | ||
Retrieves information from an access_key | ||
ID and returns it as a dictionary | ||
""" | ||
return { | ||
'access_key_id': accesskey.access_key_id, | ||
'access_key_secret': accesskey.access_key_secret, | ||
'status': accesskey.status, | ||
'create_date': accesskey.create_date | ||
} | ||
|
||
|
||
def main(): | ||
argument_spec = ecs_argument_spec() | ||
argument_spec.update(dict( | ||
user_name=dict(required=True), | ||
) | ||
) | ||
module = AnsibleModule(argument_spec=argument_spec) | ||
if HAS_FOOTMARK is False: | ||
module.fail_json(msg="Package 'footmark' required for this module.") | ||
|
||
user_name = module.params['user_name'] | ||
result = [] | ||
try: | ||
ram = ram_connect(module) | ||
for accesskey in ram.list_access_keys(user_name=user_name): | ||
result.append(get_info(accesskey)) | ||
module.exit_json(changed=False, access_keys=result, total=len(result)) | ||
except ECSResponseError as e: | ||
module.fail_json(msg='Error in describe access_keys: {0}'.format(e)) | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
格式问题,commands:后应该有一个空格