v2.3.6 (Patch)
- Fix #99 (follow-up): Akamai Edge DNS certificate issuance failed with
Either an edgerc_path or individual edgegrid credentials are required when using the EdgeDNS APIeven after the v2.3.4 settings fix. CertMate was writing the credentials INI in raw Akamai.edgercformat ([default]section + unprefixed keys), butcertbot-plugin-edgednsv0.1.0 uses certbot's standarddns_common.CredentialsConfigurationparser, which reads a flat INI with keys prefixed by the plugin namespace (edgedns_*). The fix rewrites the credentials file asedgedns_client_token,edgedns_client_secret,edgedns_access_token,edgedns_hostat top level (no section header). Verified by reading the v0.1.0 plugin source and feeding the regenerated INI through certbot's ownCredentialsConfigurationin a regression test. Reported by @SpeeDFireCZE.