2.1 KiB
layout | page_title | sidebar_current | description |
---|---|---|---|
opc | Provider: Oracle Public Cloud | docs-opc-index | The Oracle Public Cloud provider is used to interact with the many resources supported by the Oracle Public Cloud. The provider needs to be configured with credentials for the Oracle Public Cloud API. |
Oracle Public Cloud Provider
The Oracle Public Cloud provider is used to interact with the many resources supported by the Oracle Public Cloud. The provider needs to be configured with credentials for the Oracle Public Cloud API.
Use the navigation to the left to read about the available resources.
Example Usage
# Configure the Oracle Public Cloud
provider "opc" {
user = "..."
password = "..."
identity_domain = "..."
endpoint = "..."
}
# Create an IP Reservation
resource "opc_compute_ip_reservation" "production" {
parent_pool = "/oracle/public/ippool"
permanent = true
}
Argument Reference
The following arguments are supported:
-
user
- (Optional) The username to use, generally your email address. It can also be sourced from theOPC_USERNAME
environment variable. -
password
- (Optional) The password associated with the username to use. It can also be sourced from theOPC_PASSWORD
environment variable. -
identity_domain
- (Optional) The identity domain to use. It can also be sourced from theOPC_IDENTITY_DOMAIN
environment variable. -
endpoint
- (Optional) The API endpoint to use, associated with your Oracle Public Cloud account. This is known as theREST Endpoint
within the Oracle portal. It can also be sourced from theOPC_ENDPOINT
environment variable. -
max_retry_timeout
- (Optional) The maximum number of seconds to wait for a successful response when operating on resources within Oracle Public Cloud. It can also be sourced from theOPC_MAX_RETRY_TIMEOUT
environment variable. Defaults to 3000 seconds.
Testing
Credentials must be provided via the OPC_USERNAME
, OPC_PASSWORD
,
OPC_IDENTITY_DOMAIN
and OPC_ENDPOINT
environment variables in order to run
acceptance tests.