community.general.rax_cdb_user (0.2.1) — module

create / delete a Rackspace Cloud Database

Authors: Simon JAILLET (@jails)

Install collection

Install with ansible-galaxy collection install community.general:==0.2.1


Add to requirements.yml

  collections:
    - name: community.general
      version: 0.2.1

Description

create / delete a database in the Cloud Databases.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Build a user in Cloud Databases
  tasks:
    - name: User build request
      local_action:
        module: rax_cdb_user
        credentials: ~/.raxpub
        region: IAD
        cdb_id: 323e7ce0-9cb0-11e3-a5e2-0800200c9a66
        db_username: user1
        db_password: user1
        databases: ['db1']
        state: present
      register: rax_db_user

Inputs

    
env:
    description:
    - Environment as configured in I(~/.pyrax.cfg), see U(https://github.com/rackspace/pyrax/blob/master/docs/getting_started.md#pyrax-configuration).
    type: str

host:
    default: '%'
    description:
    - Specifies the host from which a user is allowed to connect to the database. Possible
      values are a string containing an IPv4 address or "%" to allow connecting from any
      host

state:
    choices:
    - present
    - absent
    default: present
    description:
    - Indicate desired state of the resource

cdb_id:
    description:
    - The databases server UUID

region:
    default: DFW
    description:
    - Region to create an instance in.
    type: str

api_key:
    aliases:
    - password
    description:
    - Rackspace API key, overrides I(credentials).
    type: str

username:
    description:
    - Rackspace username, overrides I(credentials).
    type: str

databases:
    default: []
    description:
    - Name of the databases that the user can access

tenant_id:
    description:
    - The tenant ID used for authentication.

credentials:
    aliases:
    - creds_file
    description:
    - File to find the Rackspace credentials in. Ignored if I(api_key) and I(username)
      are provided.
    type: path

db_password:
    description:
    - Database user password

db_username:
    description:
    - Name of the database user

tenant_name:
    description:
    - The tenant name used for authentication.

auth_endpoint:
    default: https://identity.api.rackspacecloud.com/v2.0/
    description:
    - The URI of the authentication service.

identity_type:
    default: rackspace
    description:
    - Authentication mechanism to use, such as rackspace or keystone.

validate_certs:
    aliases:
    - verify_ssl
    description:
    - Whether or not to require SSL validation of API endpoints.
    type: bool