mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 05:57:39 +03:00
Support for a subset of libdns providers is added. Some are enabled by default (assuming they are popular ones). AWS and Google Cloud SDKs take up extra 10 MiB of executable size. Only filesystem storage is supported as of now. Closes #3.
25 lines
637 B
Go
25 lines
637 B
Go
//+build libdns_route53 libdns_all
|
|
|
|
package libdns
|
|
|
|
import (
|
|
"github.com/foxcpp/maddy/framework/config"
|
|
"github.com/foxcpp/maddy/framework/module"
|
|
"github.com/libdns/route53"
|
|
)
|
|
|
|
func init() {
|
|
module.Register("libdns.route53", func(modName, instName string, _, _ []string) (module.Module, error) {
|
|
p := route53.Provider{}
|
|
return &ProviderModule{
|
|
RecordDeleter: &p,
|
|
RecordAppender: &p,
|
|
setConfig: func(c *config.Map) {
|
|
c.String("secret_access_key", false, false, "", &p.SecretAccessKey)
|
|
c.String("access_key_id", false, false, "", &p.AccessKeyId)
|
|
},
|
|
instName: instName,
|
|
modName: modName,
|
|
}, nil
|
|
})
|
|
}
|