Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 1.54 KB

scaleway.md

File metadata and controls

41 lines (30 loc) · 1.54 KB

Example.com

Configuration

If something is unclear in the documentation below, please refer to the scaleway API documentation.

Example

{
    "settings": [
        {
            "provider": "scaleway",
            "domain": "munchkin-academia.eu",
            "secret_key": "<SECRET_KEY>",
            "ip_version": "ipv4",
            "ipv6_suffix": "",
            "field_name": "www",
            "ttl": 450
        
        }
    ]
}

Compulsory parameters

  • "domain" is the domain to update. It can be example.com (root domain), sub.example.com (subdomain of example.com) or *.example.com for the wildcard. This fields corresponds to the dns-zone in the scaleway API documentation.
  • "secret_key"

Optional parameters

  • "ip_version" can be "ipv4" or "ipv6". It defaults to "ipv4".
  • "ipv6_suffix" is the suffix to append to the IPv6 address. It defaults to "".
  • "field_type" is the type of DNS record to update. It can be "A" or "AAAA". It defaults to "A".
  • "field_name" is the name of the DNS record to update. For example, it could be "www", "@" or "*" for the wildcard. It defaults to to "" (equivalent to "@").
  • "ttl" is the TTL of the DNS record to update. It defaults to 3600.

Domain setup

If you need more information about how to configure your domain, you can check the scaleway official documentation.