ngine_io.exoscale.instance_rdns_record module – Manages reverse DNS records for Exoscale compute instances.

Note

This module is part of the ngine_io.exoscale collection (version 1.1.0).

You might already have this collection installed if you are using the ansible package. It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install ngine_io.exoscale. You need further requirements to be able to use this module, see Requirements for details.

To use it in a playbook, specify: ngine_io.exoscale.instance_rdns_record.

New in ngine_io.exoscale 1.1.0

Synopsis

  • Set and unset reverse DNS record on Exoscale instance.

Requirements

The below requirements are needed on the host that executes this module.

  • python >= 2.6

  • cs >= 0.9.0

Parameters

Parameter

Comments

api_http_method

string

HTTP method used to query the API endpoint.

If not given, the CLOUDSTACK_METHOD env variable is considered.

Choices:

  • "get" ← (default)

  • "post"

api_key

string / required

API key of the CloudStack API.

If not given, the CLOUDSTACK_KEY env variable is considered.

api_secret

string / required

Secret key of the CloudStack API.

If not set, the CLOUDSTACK_SECRET env variable is considered.

api_timeout

integer

HTTP timeout in seconds.

If not given, the CLOUDSTACK_TIMEOUT env variable is considered.

Default: 10

api_url

string / required

URL of the CloudStack API e.g. https://cloud.example.com/client/api.

If not given, the CLOUDSTACK_ENDPOINT env variable is considered.

api_verify_ssl_cert

string

Verify CA authority cert file.

If not given, the CLOUDSTACK_VERIFY env variable is considered.

content

aliases: value

string

Reverse DSN name of the compute instance. Required if state=present.

name

string / required

Name of the compute instance

state

string

State of the record.

Choices:

  • "present" ← (default)

  • "absent"

Notes

Note

  • A detailed guide about cloudstack modules can be found in the CloudStack Cloud Guide.

  • This module supports check mode.

Examples

- name: Set the reverse DNS for a compute instance
  ngine_io.exoscale.instance_rdns_record:
    name: web-vm-1
    content: www.example.com

- name: Delete the reverse DNS for a compute instance
  ngine_io.exoscale.instance_rdns_record:
    name: web-vm-1
    state: absent

Return Values

Common return values are documented here, the following are the fields unique to this module:

Key

Description

instance_rdns_domain

string

Reverse DSN name of the compute instance

Returned: success

Authors

  • Lorenz Schori (@znerol)