Update docs for rax_facts to include parameters added for other OpenStack clouds
This commit is contained in:
parent
086cf0acb7
commit
7498f212fc
1 changed files with 46 additions and 16 deletions
|
@ -22,19 +22,56 @@ description:
|
||||||
- Gather facts for Rackspace Cloud Servers.
|
- Gather facts for Rackspace Cloud Servers.
|
||||||
version_added: "1.4"
|
version_added: "1.4"
|
||||||
options:
|
options:
|
||||||
|
api_key:
|
||||||
|
description:
|
||||||
|
- 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 I(api_key) and
|
||||||
|
I(username) are provided)
|
||||||
|
default: null
|
||||||
|
aliases:
|
||||||
|
- creds_file
|
||||||
|
env:
|
||||||
|
description:
|
||||||
|
- 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:
|
||||||
|
- Authentication machanism to use, such as rackspace or keystone
|
||||||
|
default: rackspace
|
||||||
|
version_added: 1.5
|
||||||
|
region:
|
||||||
|
description:
|
||||||
|
- 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 I(credentials))
|
||||||
|
verify_ssl:
|
||||||
|
description:
|
||||||
|
- Whether or not to require SSL validation of API endpoints
|
||||||
|
version_added: 1.5
|
||||||
address:
|
address:
|
||||||
description:
|
description:
|
||||||
- Server IP address to retrieve facts for, will match any IP assigned to
|
- Server IP address to retrieve facts for, will match any IP assigned to
|
||||||
the server
|
the server
|
||||||
api_key:
|
|
||||||
description:
|
|
||||||
- Rackspace API key (overrides C(credentials))
|
|
||||||
credentials:
|
|
||||||
description:
|
|
||||||
- File to find the Rackspace credentials in (ignored if C(api_key) and
|
|
||||||
C(username) are provided)
|
|
||||||
default: null
|
|
||||||
aliases: ['creds_file']
|
|
||||||
id:
|
id:
|
||||||
description:
|
description:
|
||||||
- Server ID to retrieve facts for
|
- Server ID to retrieve facts for
|
||||||
|
@ -42,13 +79,6 @@ options:
|
||||||
description:
|
description:
|
||||||
- Server name to retrieve facts for
|
- Server name to retrieve facts for
|
||||||
default: null
|
default: null
|
||||||
region:
|
|
||||||
description:
|
|
||||||
- Region to retrieve facts for
|
|
||||||
default: DFW
|
|
||||||
username:
|
|
||||||
description:
|
|
||||||
- Rackspace username (overrides C(credentials))
|
|
||||||
requirements: [ "pyrax" ]
|
requirements: [ "pyrax" ]
|
||||||
author: Matt Martz
|
author: Matt Martz
|
||||||
notes:
|
notes:
|
||||||
|
|
Loading…
Reference in a new issue