DNS Secondary Zones

This is a simple module that supports listing DNS Secondary Zones.

Example Syntax


name: List Zones
ionoscloudsdk.ionoscloud.dns_secondary_zone_info: null
register: zones_response

Returned object

{
    "changed": false,
    "zones": [
        {
            "id": "23da7378-a656-5d3a-9807-d283500753b6",
            "type": "secondaryzone",
            "href": "/secondaryzones/23da7378-a656-5d3a-9807-d283500753b6",
            "metadata": {
                "last_modified_date": "2023-10-24T13:12:37+00:00",
                "created_date": "2023-10-24T13:12:07+00:00",
                "state": "AVAILABLE",
                "nameservers": [
                    "<NAMESERVER1>",
                    "<NAMESERVER2>",
                    "<NAMESERVER3>",
                    "<NAMESERVER4>"
                ]
            },
            "properties": {
                "zone_name": "<ZONE_NAME>",
                "description": "test_description",
                "primary_ips": [
                    "<IP1>",
                    "<IP2>"
                ]
            }
        }
    ],
    "failed": false
}

For more examples please check out the tests here.

Available parameters:

NameRequiredDescription

filters dict

False

Filter that can be used to list only objects which have a certain set of propeties. Filters should be a dict with a key containing keys and value pair in the following format: 'properties.name': 'server_name'

api_url str

False

The Ionos API base URL.

certificate_fingerprint str

False

The Ionos API certificate fingerprint.

username str

False

The Ionos username. Overrides the IONOS_USERNAME environment variable.

password str

False

The Ionos password. Overrides the IONOS_PASSWORD environment variable.

token str

False

The Ionos token. Overrides the IONOS_TOKEN environment variable.

Last updated