dns_conoha, dns_dpi, dns_euserv, dns_tele3

This commit is contained in:
Jamie Curnow
2022-06-01 13:23:56 +04:00
parent 523449f050
commit b221446bb0
6 changed files with 207 additions and 0 deletions

View File

@ -0,0 +1,25 @@
package dnsproviders
func getDNSTele3() Provider {
return Provider{
AcmeshName: "dns_tele3",
Schema: commonKeySecretSchema,
Fields: []providerField{
{
Name: "Key",
Type: "text",
MetaKey: "api_key",
EnvKey: "TELE3_Key",
IsRequired: true,
},
{
Name: "Secret",
Type: "password",
MetaKey: "secret",
EnvKey: "TELE3_Secret",
IsRequired: true,
IsSecret: true,
},
},
}
}