Updated dnsapi2 (markdown)

Stefan
2025-11-29 17:13:49 +01:00
parent 8e56b22a75
commit 348e7892fb

@@ -111,6 +111,7 @@
- [187. Use RESTENA DNS API](#dns_restena) - [187. Use RESTENA DNS API](#dns_restena)
- [188. Use Hetzner Cloud DNS API](#dns_hetznercloud) - [188. Use Hetzner Cloud DNS API](#dns_hetznercloud)
- [189. Use QUIC.cloud DNS API](#dns_qc) - [189. Use QUIC.cloud DNS API](#dns_qc)
-
- [Use custom API](#dns_myapi) - [Use custom API](#dns_myapi)
- [Use lexicon DNS API](#dns_lexicon) - [Use lexicon DNS API](#dns_lexicon)
@@ -2849,6 +2850,30 @@ Copyright: acme.sh wiki contributors
License: GNU General Public License version 3 or any later version License: GNU General Public License version 3 or any later version
<a name="dns_infoblox_uddi"/>
## 190. Use infoblox UDDI DNS API
This script uses DNS API for [csp.infoblox.com](https://csp.infoblox.com/) dns service and is based on [API documentation](https://csp.eu.infoblox.com/apidoc)
Before first execution define the following in sh (or bash):
```sh
export Infoblox_UDDI_Key="your API key"
export Infoblox_Server=csp.infoblox.com (or for EU: csp.eu.infoblox.com)
```
API keys can be generated in infoblox portal [API settings](https://csp.infoblox.com/). Be aware for the maximum
lifetime for an API key, so you'll need to update it regularly.
To issue a cert:
```sh
./acme.sh --issue --dns dns_infoblox_uddi -d example.com -d *.example.com
```
Report any bugs or issues [here](https://github.com/acmesh-official/acme.sh/issues/6645)
<a name="dns_myapi"/> <a name="dns_myapi"/>
## Use custom API ## Use custom API