2020-03-09 10:11:07 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2022-08-05 12:28:29 +02:00
|
|
|
# Copyright (c) 2014, Matt Martz <matt@sivel.net>
|
|
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2020-03-09 10:11:07 +01:00
|
|
|
|
2020-06-24 21:50:36 +02:00
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
class ModuleDocFragment(object):
|
|
|
|
|
|
|
|
# Standard Rackspace only documentation fragment
|
|
|
|
DOCUMENTATION = r'''
|
|
|
|
options:
|
|
|
|
api_key:
|
|
|
|
description:
|
2023-06-10 09:28:40 +02:00
|
|
|
- Rackspace API key, overrides O(credentials).
|
2020-03-09 10:11:07 +01:00
|
|
|
type: str
|
|
|
|
aliases: [ password ]
|
|
|
|
credentials:
|
|
|
|
description:
|
2023-06-10 09:28:40 +02:00
|
|
|
- File to find the Rackspace credentials in. Ignored if O(api_key) and
|
|
|
|
O(username) are provided.
|
2020-03-09 10:11:07 +01:00
|
|
|
type: path
|
|
|
|
aliases: [ creds_file ]
|
|
|
|
env:
|
|
|
|
description:
|
2023-06-10 09:28:40 +02:00
|
|
|
- Environment as configured in C(~/.pyrax.cfg),
|
2020-03-09 10:11:07 +01:00
|
|
|
see U(https://github.com/rackspace/pyrax/blob/master/docs/getting_started.md#pyrax-configuration).
|
|
|
|
type: str
|
|
|
|
region:
|
|
|
|
description:
|
|
|
|
- Region to create an instance in.
|
|
|
|
type: str
|
|
|
|
username:
|
|
|
|
description:
|
2023-06-10 09:28:40 +02:00
|
|
|
- Rackspace username, overrides O(credentials).
|
2020-03-09 10:11:07 +01:00
|
|
|
type: str
|
|
|
|
validate_certs:
|
|
|
|
description:
|
|
|
|
- Whether or not to require SSL validation of API endpoints.
|
|
|
|
type: bool
|
|
|
|
aliases: [ verify_ssl ]
|
|
|
|
requirements:
|
|
|
|
- python >= 2.6
|
|
|
|
- pyrax
|
|
|
|
notes:
|
|
|
|
- The following environment variables can be used, C(RAX_USERNAME),
|
|
|
|
C(RAX_API_KEY), C(RAX_CREDS_FILE), C(RAX_CREDENTIALS), C(RAX_REGION).
|
|
|
|
- C(RAX_CREDENTIALS) and C(RAX_CREDS_FILE) points to a credentials file
|
|
|
|
appropriate for pyrax. See U(https://github.com/rackspace/pyrax/blob/master/docs/getting_started.md#authenticating)
|
|
|
|
- C(RAX_USERNAME) and C(RAX_API_KEY) obviate the use of a credentials file
|
|
|
|
- C(RAX_REGION) defines a Rackspace Public Cloud region (DFW, ORD, LON, ...)
|
|
|
|
'''
|
|
|
|
|
|
|
|
# Documentation fragment including attributes to enable communication
|
|
|
|
# of other OpenStack clouds. Not all rax modules support this.
|
|
|
|
OPENSTACK = r'''
|
|
|
|
options:
|
|
|
|
api_key:
|
2020-11-08 09:44:28 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
description:
|
2023-06-10 09:28:40 +02:00
|
|
|
- Rackspace API key, overrides O(credentials).
|
2020-03-09 10:11:07 +01:00
|
|
|
aliases: [ password ]
|
|
|
|
auth_endpoint:
|
2020-11-08 09:44:28 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
description:
|
|
|
|
- The URI of the authentication service.
|
2020-11-08 09:44:28 +01:00
|
|
|
- If not specified will be set to U(https://identity.api.rackspacecloud.com/v2.0/)
|
2020-03-09 10:11:07 +01:00
|
|
|
credentials:
|
2020-11-08 09:44:28 +01:00
|
|
|
type: path
|
2020-03-09 10:11:07 +01:00
|
|
|
description:
|
2023-06-10 09:28:40 +02:00
|
|
|
- File to find the Rackspace credentials in. Ignored if O(api_key) and
|
|
|
|
O(username) are provided.
|
2020-03-09 10:11:07 +01:00
|
|
|
aliases: [ creds_file ]
|
|
|
|
env:
|
2020-11-08 09:44:28 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
description:
|
2023-06-10 09:28:40 +02:00
|
|
|
- Environment as configured in C(~/.pyrax.cfg),
|
2020-03-09 10:11:07 +01:00
|
|
|
see U(https://github.com/rackspace/pyrax/blob/master/docs/getting_started.md#pyrax-configuration).
|
|
|
|
identity_type:
|
2020-11-08 09:44:28 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
description:
|
|
|
|
- Authentication mechanism to use, such as rackspace or keystone.
|
|
|
|
default: rackspace
|
|
|
|
region:
|
2020-11-08 09:44:28 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
description:
|
|
|
|
- Region to create an instance in.
|
|
|
|
tenant_id:
|
2020-11-08 09:44:28 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
description:
|
|
|
|
- The tenant ID used for authentication.
|
|
|
|
tenant_name:
|
2020-11-08 09:44:28 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
description:
|
|
|
|
- The tenant name used for authentication.
|
|
|
|
username:
|
2020-11-08 09:44:28 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
description:
|
2023-06-10 09:28:40 +02:00
|
|
|
- Rackspace username, overrides O(credentials).
|
2020-03-09 10:11:07 +01:00
|
|
|
validate_certs:
|
|
|
|
description:
|
|
|
|
- Whether or not to require SSL validation of API endpoints.
|
|
|
|
type: bool
|
|
|
|
aliases: [ verify_ssl ]
|
2023-01-14 18:39:05 +01:00
|
|
|
deprecated:
|
|
|
|
removed_in: 9.0.0
|
|
|
|
why: This module relies on the deprecated package pyrax.
|
|
|
|
alternative: Use the Openstack modules instead.
|
2020-03-09 10:11:07 +01:00
|
|
|
requirements:
|
|
|
|
- python >= 2.6
|
|
|
|
- pyrax
|
|
|
|
notes:
|
|
|
|
- The following environment variables can be used, C(RAX_USERNAME),
|
|
|
|
C(RAX_API_KEY), C(RAX_CREDS_FILE), C(RAX_CREDENTIALS), C(RAX_REGION).
|
|
|
|
- C(RAX_CREDENTIALS) and C(RAX_CREDS_FILE) points to a credentials file
|
|
|
|
appropriate for pyrax. See U(https://github.com/rackspace/pyrax/blob/master/docs/getting_started.md#authenticating)
|
|
|
|
- C(RAX_USERNAME) and C(RAX_API_KEY) obviate the use of a credentials file
|
|
|
|
- C(RAX_REGION) defines a Rackspace Public Cloud region (DFW, ORD, LON, ...)
|
|
|
|
'''
|