https://go-acme.github.io/lego/dns/exec/
Script automates the process of dns-01
challenge by managing TXT records using the Oracle Cloud Infrastructure
DNS service.
This package provides simple ocilego
utility to being executed by lego in acme_certificate
terraform resource. Native oraclecloud
provider is difficult to use because of uncommon authentication
variables: go-acme/lego#1380
pip3 install oci-lego-exec
resource "acme_certificate" "certificate" {
...
dns_challenge {
provider = "exec"
config = {
"EXEC_PATH" = "ocilego"
}
}
}
oci