forked from TrueCloudLab/lego
fix: some typos. (#1116)
This commit is contained in:
parent
b9f530e352
commit
5429e50cc2
5 changed files with 5 additions and 5 deletions
|
@ -54,7 +54,7 @@ More information [here](/lego/dns/#configuration-and-credentials).
|
||||||
|
|
||||||
## More information
|
## More information
|
||||||
|
|
||||||
- [API documentation](https://community.exoscale.com/documentation/dns/api/)
|
- [API documentation](https://cloud.google.com/dns/api/v1/)
|
||||||
- [Go client](https://github.com/googleapis/google-api-go-client)
|
- [Go client](https://github.com/googleapis/google-api-go-client)
|
||||||
|
|
||||||
<!-- THIS DOCUMENTATION IS AUTO-GENERATED. PLEASE DO NOT EDIT. -->
|
<!-- THIS DOCUMENTATION IS AUTO-GENERATED. PLEASE DO NOT EDIT. -->
|
||||||
|
|
|
@ -11,7 +11,7 @@ slug: liquidweb
|
||||||
|
|
||||||
Since: v3.1.0
|
Since: v3.1.0
|
||||||
|
|
||||||
Configuration for [Liquid Web](https://cart.liquidweb.com/storm/api/docs/v1/).
|
Configuration for [Liquid Web](https://liquidweb.com).
|
||||||
|
|
||||||
|
|
||||||
<!--more-->
|
<!--more-->
|
||||||
|
|
|
@ -18,5 +18,5 @@ Example = ''''''
|
||||||
GCE_TTL = "The TTL of the TXT record used for the DNS challenge"
|
GCE_TTL = "The TTL of the TXT record used for the DNS challenge"
|
||||||
|
|
||||||
[Links]
|
[Links]
|
||||||
API = "https://community.exoscale.com/documentation/dns/api/"
|
API = "https://cloud.google.com/dns/api/v1/"
|
||||||
GoClient = "https://github.com/googleapis/google-api-go-client"
|
GoClient = "https://github.com/googleapis/google-api-go-client"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Name = "Liquid Web"
|
Name = "Liquid Web"
|
||||||
Description = ''''''
|
Description = ''''''
|
||||||
URL = "https://cart.liquidweb.com/storm/api/docs/v1/"
|
URL = "https://liquidweb.com"
|
||||||
Code = "liquidweb"
|
Code = "liquidweb"
|
||||||
Since = "v3.1.0"
|
Since = "v3.1.0"
|
||||||
|
|
||||||
|
|
|
@ -110,7 +110,7 @@ func (d *DNSProvider) Present(domain, token, keyAuth string) error {
|
||||||
|
|
||||||
domainDetails, err := d.client.GetDomain(&namecom.GetDomainRequest{DomainName: domain})
|
domainDetails, err := d.client.GetDomain(&namecom.GetDomainRequest{DomainName: domain})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("namedotcom API call failed: %v", err)
|
return fmt.Errorf("namedotcom API call failed: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
request := &namecom.Record{
|
request := &namecom.Record{
|
||||||
|
|
Loading…
Reference in a new issue