oraclecloud.toml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. Name = "Oracle Cloud"
  2. Description = ''''''
  3. URL = "https://cloud.oracle.com/home"
  4. Code = "oraclecloud"
  5. Since = "v2.3.0"
  6. Example = '''
  7. OCI_PRIVKEY_FILE="~/.oci/oci_api_key.pem" \
  8. OCI_PRIVKEY_PASS="secret" \
  9. OCI_TENANCY_OCID="ocid1.tenancy.oc1..secret" \
  10. OCI_USER_OCID="ocid1.user.oc1..secret" \
  11. OCI_PUBKEY_FINGERPRINT="00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" \
  12. OCI_REGION="us-phoenix-1" \
  13. OCI_COMPARTMENT_OCID="ocid1.tenancy.oc1..secret" \
  14. lego --email you@example.com --dns oraclecloud -d '*.example.com' -d example.com run
  15. '''
  16. [Configuration]
  17. [Configuration.Credentials]
  18. OCI_PRIVKEY_FILE = "Private key file"
  19. OCI_PRIVKEY_PASS = "Private key password"
  20. OCI_TENANCY_OCID = "Tenancy OCID"
  21. OCI_USER_OCID = "User OCID"
  22. OCI_PUBKEY_FINGERPRINT = "Public key fingerprint"
  23. OCI_REGION = "Region"
  24. OCI_COMPARTMENT_OCID = "Compartment OCID"
  25. [Configuration.Additional]
  26. OCI_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 2)"
  27. OCI_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 60)"
  28. OCI_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 120)"
  29. OCI_HTTP_TIMEOUT = "API request timeout in seconds (Default: 60)"
  30. [Links]
  31. API = "https://docs.cloud.oracle.com/iaas/Content/DNS/Concepts/dnszonemanagement.htm"
  32. GoClient = "https://github.com/oracle/oci-go-sdk"