Skip to content

caddy-dns/selectel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Selectel DNS v2 module for Caddy

This package contains a DNS provider module for Caddy. It can be used to manage DNS records with Selectel DNS v2 API.

Caddy module name

dns.providers.selectel

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": "selectel",
        "user": "SELECTEL_USER", // see link "Selectel Service user" below
        "password": "SELECTEL_PASSWORD",
        "account_id": "SELECTEL_ACCOUNT_ID", // your main Selectel account id, like "123456"
        "project_name": "SELECTEL_PROJECT_NAME" // a project in which the service user is an administrator
      }
    }
  }
}

or with the Caddyfile:

# globally
{
	acme_dns selectel {
		user <SELECTEL_USER>
		password <SELECTEL_PASSWORD>
		account_id <SELECTEL_ACCOUNT_ID>
		project_name <SELECTEL_PROJECT_NAME>
	}
}
# one site
tls {
	dns selectel {
		user <SELECTEL_USER>
		password <SELECTEL_PASSWORD>
		account_id <SELECTEL_ACCOUNT_ID>
		project_name <SELECTEL_PROJECT_NAME>
	}
}

Selectel Service user management

Always yours @jjazzme

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages