community.general.rax_facts (0.1.4) — module

Gather facts for Rackspace Cloud Servers

Authors: Matt Martz (@sivel)

Install collection

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


Add to requirements.yml

  collections:
    - name: community.general
      version: 0.1.4

Description

Gather facts for Rackspace Cloud Servers.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Gather info about servers
  hosts: all
  gather_facts: False
  tasks:
    - name: Get facts about servers
      local_action:
        module: rax_facts
        credentials: ~/.raxpub
        name: "{{ inventory_hostname }}"
        region: DFW
    - name: Map some facts
      set_fact:
        ansible_ssh_host: "{{ rax_accessipv4 }}"

Inputs

    
id:
    description:
    - Server ID to retrieve facts for

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

name:
    description:
    - Server name to retrieve facts for

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

address:
    description:
    - Server IP address to retrieve facts for, will match any IP assigned to the server

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

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

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.

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