File: oraclecloud.toml

package info (click to toggle)
golang-github-xenolf-lego 4.9.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,080 kB
  • sloc: xml: 533; makefile: 128; sh: 18
file content (35 lines) | stat: -rw-r--r-- 1,244 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Name = "Oracle Cloud"
Description = ''''''
URL = "https://cloud.oracle.com/home"
Code = "oraclecloud"
Since = "v2.3.0"

Example = '''
OCI_PRIVKEY_FILE="~/.oci/oci_api_key.pem" \
OCI_PRIVKEY_PASS="secret" \
OCI_TENANCY_OCID="ocid1.tenancy.oc1..secret" \
OCI_USER_OCID="ocid1.user.oc1..secret" \
OCI_PUBKEY_FINGERPRINT="00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00" \
OCI_REGION="us-phoenix-1" \
OCI_COMPARTMENT_OCID="ocid1.tenancy.oc1..secret" \
lego --email you@example.com --dns oraclecloud --domains my.example.org run
'''

[Configuration]
  [Configuration.Credentials]
    OCI_PRIVKEY_FILE = "Private key file"
    OCI_PRIVKEY_PASS = "Private key password"
    OCI_TENANCY_OCID = "Tenancy OCID"
    OCI_USER_OCID = "User OCID"
    OCI_PUBKEY_FINGERPRINT = "Public key fingerprint"
    OCI_REGION = "Region"
    OCI_COMPARTMENT_OCID = "Compartment OCID"
  [Configuration.Additional]
    OCI_POLLING_INTERVAL = "Time between DNS propagation check"
    OCI_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation"
    OCI_TTL = "The TTL of the TXT record used for the DNS challenge"

[Links]
  API = "https://docs.cloud.oracle.com/iaas/Content/DNS/Concepts/dnszonemanagement.htm"
  GoClient = "https://github.com/oracle/oci-go-sdk"