You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/flags.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -119,6 +119,7 @@
119
119
|`--ns1-endpoint=""`| When using the NS1 provider, specify the URL of the API endpoint to target (default: https://api.nsone.net/v1/)|
120
120
|`--[no-]ns1-ignoressl`| When using the NS1 provider, specify whether to verify the SSL certificate (default: false) |
121
121
|`--ns1-min-ttl=NS1-MIN-TTL`| Minimal TTL (in seconds) for records. This value will be used if the provided TTL for a service/ingress is lower than this. |
122
+
|`--ns1-zone-handle-map=fqdn=handle`| Map FQDN (or suffix) to an NS1 zone handle/ID. Repeatable; k=v form. . |
122
123
|`--digitalocean-api-page-size=50`| Configure the page size used when querying the DigitalOcean API. |
123
124
|`--godaddy-api-key=""`| When using the GoDaddy provider, specify the API Key (required when --provider=godaddy) |
124
125
|`--godaddy-api-secret=""`| When using the GoDaddy provider, specify the API secret (required when --provider=godaddy) |
app.Flag("ns1-endpoint", "When using the NS1 provider, specify the URL of the API endpoint to target (default: https://api.nsone.net/v1/)").Default(defaultConfig.NS1Endpoint).StringVar(&cfg.NS1Endpoint)
578
583
app.Flag("ns1-ignoressl", "When using the NS1 provider, specify whether to verify the SSL certificate (default: false)").Default(strconv.FormatBool(defaultConfig.NS1IgnoreSSL)).BoolVar(&cfg.NS1IgnoreSSL)
579
584
app.Flag("ns1-min-ttl", "Minimal TTL (in seconds) for records. This value will be used if the provided TTL for a service/ingress is lower than this.").IntVar(&cfg.NS1MinTTLSeconds)
585
+
app.Flag("ns1-zone-handle-map", "Map FQDN (or suffix) to an NS1 zone handle/ID. Repeatable; k=v form. .").PlaceHolder("fqdn=handle").StringMapVar(&cfg.NS1ZoneHandleMap)
580
586
app.Flag("digitalocean-api-page-size", "Configure the page size used when querying the DigitalOcean API.").Default(strconv.Itoa(defaultConfig.DigitalOceanAPIPageSize)).IntVar(&cfg.DigitalOceanAPIPageSize)
581
587
// GoDaddy flags
582
588
app.Flag("godaddy-api-key", "When using the GoDaddy provider, specify the API Key (required when --provider=godaddy)").Default(defaultConfig.GoDaddyAPIKey).StringVar(&cfg.GoDaddyAPIKey)
0 commit comments