tencentcloud

package module
v0.0.0-...-34c1a72 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 16, 2025 License: MIT Imports: 3 Imported by: 0

README

Tencent Cloud DNS (DNSPod) module for Caddy

This package contains a DNS provider module for Caddy. It can be used to manage DNS records with Tencent Cloud (as is https://www.tencentcloud.com or https://cloud.tencent.com) accounts.

Caddy module name

dns.providers.tencentcloud

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": "tencentcloud",
        "secret_id":  "TENCENTCLOUD_SECRET_ID",
        "secret_key": "TENCENTCLOUD_SECRET_KEY"
      }
    }
  }
}

or with the Caddyfile:

# globally

acme_dns tencentcloud {
  secret_id {env.TENCENTCLOUD_SECRET_ID}
  secret_key {env.TENCENTCLOUD_SECRET_KEY}
}
# one site

tls {
  dns tencentcloud {
    secret_id {env.TENCENTCLOUD_SECRET_ID}
    secret_key {env.TENCENTCLOUD_SECRET_KEY}
  }
}

You can replace {env.TENCENTCLOUD_SECRET_ID},{env.TENCENTCLOUD_SECRET_KEY} with the actual auth token in the "" if you prefer to put it directly in your config instead of an environment variable.

Authenticating

See the associated README in the libdns package for important information about credentials.

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Provider

type Provider struct{ *tencentcloud.Provider }

Provider wraps the provider implementation as a Caddy module.

func (Provider) CaddyModule

func (Provider) CaddyModule() caddy.ModuleInfo

CaddyModule returns the Caddy module information.

func (*Provider) Provision

func (p *Provider) Provision(ctx caddy.Context) error

Before using the provider config, resolve placeholders in the API token. Implements caddy.Provisioner.

func (*Provider) UnmarshalCaddyfile

func (p *Provider) UnmarshalCaddyfile(d *caddyfile.Dispenser) error

UnmarshalCaddyfile sets up the DNS provider from Caddyfile tokens. Syntax:

tencentcloud {
    secret_id "<secret_id>"
    secret_key "<secret_key>"
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL