stampr / route53

Caddy module: dns.providers.route53

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Route53 module for Caddy

This package contains a DNS provider module for Caddy. It can be used to manage DNS records in Route53 Hosted zones.

Caddy module name

dns.providers.route53

Authenticating

See the associated README in the libdns package for important information about credentials and an IAM policy example.

Building

To compile this Caddy module, follow the steps describe at the Caddy Build from Source instructions and import the github.com/caddy-dns/route53 plugin

Config examples

To use this module for the ACME DNS challenge, configure the ACME issuer in your Caddy JSON like so:

{
  "module": "acme",
  "challenges": {
    "dns": {
      "provider": {
        "name": "route53",
        "max_retries": 10,
        "aws_profile": "real-profile"
      }
    }
  }
}

or with the Caddyfile:

tls {
  dns route53 {
    max_retries 10
    aws_profile "real-profile"
  }
}

About

Caddy module: dns.providers.route53


Languages

Language:Go 100.0%