diff options
author | Matt Martz <matt@sivel.net> | 2014-01-30 15:59:31 +0100 |
---|---|---|
committer | Matt Martz <matt@sivel.net> | 2014-01-30 15:59:31 +0100 |
commit | 7498f212fcdaa6ca14f13623d612e14fdb5d49bb (patch) | |
tree | a05a746938bfb8ae001a75555e24cf37375e2f46 | |
parent | Merge pull request #5745 from angstwad/cf-module-revert (diff) | |
download | ansible-7498f212fcdaa6ca14f13623d612e14fdb5d49bb.tar.xz ansible-7498f212fcdaa6ca14f13623d612e14fdb5d49bb.zip |
Update docs for rax_facts to include parameters added for other OpenStack clouds
-rw-r--r-- | library/cloud/rax_facts | 60 |
1 files changed, 45 insertions, 15 deletions
diff --git a/library/cloud/rax_facts b/library/cloud/rax_facts index b4cb0c978f..d1cd3056e8 100644 --- a/library/cloud/rax_facts +++ b/library/cloud/rax_facts @@ -22,33 +22,63 @@ description: - Gather facts for Rackspace Cloud Servers. version_added: "1.4" options: - address: - description: - - Server IP address to retrieve facts for, will match any IP assigned to - the server api_key: description: - - Rackspace API key (overrides C(credentials)) + - Rackspace API key (overrides I(credentials)) + aliases: + - password + auth_endpoint: + description: + - The URI of the authentication service + default: https://identity.api.rackspacecloud.com/v2.0/ + version_added: 1.5 credentials: description: - - File to find the Rackspace credentials in (ignored if C(api_key) and - C(username) are provided) + - File to find the Rackspace credentials in (ignored if I(api_key) and + I(username) are provided) default: null - aliases: ['creds_file'] - id: + aliases: + - creds_file + env: description: - - Server ID to retrieve facts for - name: + - Environment as configured in ~/.pyrax.cfg, + see https://github.com/rackspace/pyrax/blob/master/docs/getting_started.md#pyrax-configuration + version_added: 1.5 + identity_type: description: - - Server name to retrieve facts for - default: null + - Authentication machanism to use, such as rackspace or keystone + default: rackspace + version_added: 1.5 region: description: - - Region to retrieve facts for + - Region to create an instance in default: DFW + tenant_id: + description: + - The tenant ID used for authentication + version_added: 1.5 + tenant_name: + description: + - The tenant name used for authentication + version_added: 1.5 username: description: - - Rackspace username (overrides C(credentials)) + - Rackspace username (overrides I(credentials)) + verify_ssl: + description: + - Whether or not to require SSL validation of API endpoints + version_added: 1.5 + address: + description: + - Server IP address to retrieve facts for, will match any IP assigned to + the server + id: + description: + - Server ID to retrieve facts for + name: + description: + - Server name to retrieve facts for + default: null requirements: [ "pyrax" ] author: Matt Martz notes: |