dns_zonomi

This commit is contained in:
Jamie Curnow 2022-06-01 09:11:06 +04:00
parent 49da5d7acc
commit 3bfdc21256
3 changed files with 22 additions and 0 deletions

View File

@ -70,6 +70,7 @@ func List() []Provider {
getDNSUnoeuro(),
getDNSVscale(),
getDNSYandex(),
getDNSZonomi(),
}
}

View File

@ -0,0 +1,18 @@
package dnsproviders
func getDNSZonomi() Provider {
return Provider{
AcmeshName: "dns_zonomi",
Schema: commonKeySchema,
Fields: []providerField{
{
Name: "API Key",
Type: "password",
MetaKey: "api_key",
EnvKey: "ZM_Key",
IsRequired: true,
IsSecret: true,
},
},
}
}

View File

@ -104,6 +104,9 @@
"acmesh.dns_yandex": {
"defaultMessage": "pdd.yandex.ru"
},
"acmesh.dns_zonomi": {
"defaultMessage": "Zonomi"
},
"action.edit": {
"defaultMessage": "Edit"
},