Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
3db4039a
Commit
3db4039a
authored
Aug 25, 2015
by
Rene Moser
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cloudstack: implement general api_region support, update docs
parent
efa005c2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
lib/ansible/module_utils/cloudstack.py
+2
-1
lib/ansible/utils/module_docs_fragments/cloudstack.py
+10
-3
No files found.
lib/ansible/module_utils/cloudstack.py
View file @
3db4039a
...
@@ -94,7 +94,8 @@ class AnsibleCloudStack(object):
...
@@ -94,7 +94,8 @@ class AnsibleCloudStack(object):
method
=
api_http_method
method
=
api_http_method
)
)
else
:
else
:
self
.
cs
=
CloudStack
(
**
read_config
())
api_region
=
self
.
module
.
params
.
get
(
'api_region'
,
'cloudstack'
)
self
.
cs
=
CloudStack
(
**
read_config
(
api_region
))
def
get_or_fallback
(
self
,
key
=
None
,
fallback_key
=
None
):
def
get_or_fallback
(
self
,
key
=
None
,
fallback_key
=
None
):
...
...
lib/ansible/utils/module_docs_fragments/cloudstack.py
View file @
3db4039a
...
@@ -48,18 +48,25 @@ options:
...
@@ -48,18 +48,25 @@ options:
- HTTP timeout.
- HTTP timeout.
required: false
required: false
default: 10
default: 10
api_region:
description:
- Name of the ini section in the C(cloustack.ini) file.
required: false
default: cloudstack
requirements:
requirements:
- "python >= 2.6"
- "python >= 2.6"
-
cs
-
"cs >= 0.6.10"
notes:
notes:
- Ansible uses the C(cs) library's configuration method if credentials are not
- Ansible uses the C(cs) library's configuration method if credentials are not
provided by the
option
s C(api_url), C(api_key), C(api_secret).
provided by the
argument
s C(api_url), C(api_key), C(api_secret).
Configuration is read from several locations, in the following order.
Configuration is read from several locations, in the following order.
- The C(CLOUDSTACK_ENDPOINT), C(CLOUDSTACK_KEY), C(CLOUDSTACK_SECRET) and
- The C(CLOUDSTACK_ENDPOINT), C(CLOUDSTACK_KEY), C(CLOUDSTACK_SECRET) and
C(CLOUDSTACK_METHOD). C(CLOUDSTACK_TIMEOUT) environment variables.
C(CLOUDSTACK_METHOD). C(CLOUDSTACK_TIMEOUT) environment variables.
- A C(CLOUDSTACK_CONFIG) environment variable pointing to an C(.ini) file,
- A C(CLOUDSTACK_CONFIG) environment variable pointing to an C(.ini) file,
- A C(cloudstack.ini) file in the current working directory.
- A C(cloudstack.ini) file in the current working directory.
- A C(.cloudstack.ini) file in the users home directory.
- A C(.cloudstack.ini) file in the users home directory.
See https://github.com/exoscale/cs for more information.
Optionally multiple credentials and endpoints can be specified using ini sections in C(cloudstack.ini).
Use the argument C(api_region) to select the section name, default section is C(cloudstack).
See https://github.com/exoscale/cs for more information.
- This module supports check mode.
- This module supports check mode.
'''
'''
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment