2021-01-25 04:35:12 +08:00
## Configuration
2022-05-09 02:41:33 +08:00
To use this provider, add an entry to `creds.json` with `TYPE` set to `ORACLE`
along with other authentication parameters.
2021-01-25 04:35:12 +08:00
Create an API key through the Oracle Cloud portal, and provide the user OCID, tenancy OCID, key fingerprint, region, and the contents of the private key.
The OCID of the compartment DNS resources should be put in can also optionally be provided.
2022-05-09 02:41:33 +08:00
Example:
2023-03-03 05:17:27 +08:00
{% code title="creds.json" %}
2022-02-18 01:22:31 +08:00
```json
2021-01-25 04:35:12 +08:00
{
"oracle": {
2022-05-09 02:41:33 +08:00
"TYPE": "ORACLE",
"compartment": "$ORACLE_COMPARTMENT",
2021-01-25 04:35:12 +08:00
"fingerprint": "$ORACLE_FINGERPRINT",
"private_key": "$ORACLE_PRIVATE_KEY",
2022-05-09 02:41:33 +08:00
"region": "$ORACLE_REGION",
"tenancy_ocid": "$ORACLE_TENANCY_OCID",
"user_ocid": "$ORACLE_USER_OCID"
}
2021-01-25 04:35:12 +08:00
}
2022-02-18 01:22:31 +08:00
```
2023-03-03 05:17:27 +08:00
{% endcode %}
2021-01-25 04:35:12 +08:00
## Metadata
This provider does not recognize any special metadata fields unique to Oracle Cloud.
## Usage
2023-03-11 21:42:01 +08:00
An example configuration:
2021-01-25 04:35:12 +08:00
2023-03-11 21:42:01 +08:00
{% code title="dnsconfig.js" %}
2023-01-20 20:56:20 +08:00
```javascript
2022-05-09 02:41:33 +08:00
var REG_NONE = NewRegistrar("none");
var DSP_ORACLE = NewDnsProvider("oracle");
2021-01-25 04:35:12 +08:00
2023-06-17 20:58:17 +08:00
D("example.com", REG_NONE, DnsProvider(DSP_ORACLE),
2021-01-25 04:35:12 +08:00
NAMESERVER_TTL(86400),
2022-05-09 02:41:33 +08:00
A("test", "1.2.3.4")
2021-01-25 04:35:12 +08:00
);
2022-02-18 01:22:31 +08:00
```
2023-03-11 21:42:01 +08:00
{% endcode %}