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
|
||||
|
||||
- [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)
|
||||
|
||||
<!-- THIS DOCUMENTATION IS AUTO-GENERATED. PLEASE DO NOT EDIT. -->
|
||||
|
|
|
@ -11,7 +11,7 @@ slug: liquidweb
|
|||
|
||||
Since: v3.1.0
|
||||
|
||||
Configuration for [Liquid Web](https://cart.liquidweb.com/storm/api/docs/v1/).
|
||||
Configuration for [Liquid Web](https://liquidweb.com).
|
||||
|
||||
|
||||
<!--more-->
|
||||
|
|
|
@ -18,5 +18,5 @@ Example = ''''''
|
|||
GCE_TTL = "The TTL of the TXT record used for the DNS challenge"
|
||||
|
||||
[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"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Name = "Liquid Web"
|
||||
Description = ''''''
|
||||
URL = "https://cart.liquidweb.com/storm/api/docs/v1/"
|
||||
URL = "https://liquidweb.com"
|
||||
Code = "liquidweb"
|
||||
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})
|
||||
if err != nil {
|
||||
return fmt.Errorf("namedotcom API call failed: %v", err)
|
||||
return fmt.Errorf("namedotcom API call failed: %w", err)
|
||||
}
|
||||
|
||||
request := &namecom.Record{
|
||||
|
|
Loading…
Reference in a new issue