Documentation ¶
Overview ¶
Package route53 implements a DNS provider for solving the DNS-01 challenge using AWS Route 53 DNS.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DNSProvider ¶
type DNSProvider struct {
// contains filtered or unexported fields
}
DNSProvider implements the util.ChallengeProvider interface
func NewDNSProvider ¶
func NewDNSProvider(accessKeyID, secretAccessKey, hostedZoneID, region, role string, ambient bool, dns01Nameservers []string, userAgent string, ) (*DNSProvider, error)
NewDNSProvider returns a DNSProvider instance configured for the AWS Route 53 service using static credentials from its parameters or, if they're unset and the 'ambient' option is set, credentials from the environment.
func (*DNSProvider) CleanUp ¶
func (r *DNSProvider) CleanUp(domain, fqdn, value string) error
CleanUp removes the TXT record matching the specified parameters
func (*DNSProvider) Present ¶
func (r *DNSProvider) Present(domain, fqdn, value string) error
Present creates a TXT record using the specified parameters
Click to show internal directories.
Click to hide internal directories.