Skip to content

Support for ACME DNS challenge through Google Domains

License

Notifications You must be signed in to change notification settings

kaferka/caddy-dns-google-domains

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Google Domains module for Caddy

This package contains a DNS provider module for Caddy. It can be used to manage ACME DNS challenge records with Google Domains.

Unlike most DNS provider modules for Caddy, this module works ONLY for ACME DNS challenges, due to limitations in the Google Domains API, which is designed only for manipulating TXT records for the DNS challenge.

Caddy module name

dns.providers.google_domains

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": "google_domains",
				"access_token": "YOUR_ACCESS_TOKEN"
			}
		}
	}
}

or with the Caddyfile:

# globally
{
	acme_dns google_domains <access_token>
}
# one site
tls {
	dns google_domains <access_token>
}

About

Support for ACME DNS challenge through Google Domains

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%