1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Core
  5. InstanceConsoleConnection
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.Core.InstanceConsoleConnection

Explore with Pulumi AI

This resource provides the Instance Console Connection resource in Oracle Cloud Infrastructure Core service.

Creates a new console connection to the specified instance. After the console connection has been created and is available, you connect to the console using SSH.

For more information about instance console connections, see Troubleshooting Instances Using Instance Console Connections.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testInstanceConsoleConnection = new oci.core.InstanceConsoleConnection("test_instance_console_connection", {
    instanceId: testInstance.id,
    publicKey: instanceConsoleConnectionPublicKey,
    definedTags: {
        "Operations.CostCenter": "42",
    },
    freeformTags: {
        Department: "Finance",
    },
});
Copy
import pulumi
import pulumi_oci as oci

test_instance_console_connection = oci.core.InstanceConsoleConnection("test_instance_console_connection",
    instance_id=test_instance["id"],
    public_key=instance_console_connection_public_key,
    defined_tags={
        "Operations.CostCenter": "42",
    },
    freeform_tags={
        "Department": "Finance",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/core"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := core.NewInstanceConsoleConnection(ctx, "test_instance_console_connection", &core.InstanceConsoleConnectionArgs{
			InstanceId: pulumi.Any(testInstance.Id),
			PublicKey:  pulumi.Any(instanceConsoleConnectionPublicKey),
			DefinedTags: pulumi.StringMap{
				"Operations.CostCenter": pulumi.String("42"),
			},
			FreeformTags: pulumi.StringMap{
				"Department": pulumi.String("Finance"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testInstanceConsoleConnection = new Oci.Core.InstanceConsoleConnection("test_instance_console_connection", new()
    {
        InstanceId = testInstance.Id,
        PublicKey = instanceConsoleConnectionPublicKey,
        DefinedTags = 
        {
            { "Operations.CostCenter", "42" },
        },
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Core.InstanceConsoleConnection;
import com.pulumi.oci.Core.InstanceConsoleConnectionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var testInstanceConsoleConnection = new InstanceConsoleConnection("testInstanceConsoleConnection", InstanceConsoleConnectionArgs.builder()
            .instanceId(testInstance.id())
            .publicKey(instanceConsoleConnectionPublicKey)
            .definedTags(Map.of("Operations.CostCenter", "42"))
            .freeformTags(Map.of("Department", "Finance"))
            .build());

    }
}
Copy
resources:
  testInstanceConsoleConnection:
    type: oci:Core:InstanceConsoleConnection
    name: test_instance_console_connection
    properties:
      instanceId: ${testInstance.id}
      publicKey: ${instanceConsoleConnectionPublicKey}
      definedTags:
        Operations.CostCenter: '42'
      freeformTags:
        Department: Finance
Copy

Create InstanceConsoleConnection Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new InstanceConsoleConnection(name: string, args: InstanceConsoleConnectionArgs, opts?: CustomResourceOptions);
@overload
def InstanceConsoleConnection(resource_name: str,
                              args: InstanceConsoleConnectionArgs,
                              opts: Optional[ResourceOptions] = None)

@overload
def InstanceConsoleConnection(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              instance_id: Optional[str] = None,
                              public_key: Optional[str] = None,
                              defined_tags: Optional[Mapping[str, str]] = None,
                              freeform_tags: Optional[Mapping[str, str]] = None)
func NewInstanceConsoleConnection(ctx *Context, name string, args InstanceConsoleConnectionArgs, opts ...ResourceOption) (*InstanceConsoleConnection, error)
public InstanceConsoleConnection(string name, InstanceConsoleConnectionArgs args, CustomResourceOptions? opts = null)
public InstanceConsoleConnection(String name, InstanceConsoleConnectionArgs args)
public InstanceConsoleConnection(String name, InstanceConsoleConnectionArgs args, CustomResourceOptions options)
type: oci:Core:InstanceConsoleConnection
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. InstanceConsoleConnectionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. InstanceConsoleConnectionArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. InstanceConsoleConnectionArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. InstanceConsoleConnectionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. InstanceConsoleConnectionArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var instanceConsoleConnectionResource = new Oci.Core.InstanceConsoleConnection("instanceConsoleConnectionResource", new()
{
    InstanceId = "string",
    PublicKey = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    FreeformTags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := Core.NewInstanceConsoleConnection(ctx, "instanceConsoleConnectionResource", &Core.InstanceConsoleConnectionArgs{
	InstanceId: pulumi.String("string"),
	PublicKey:  pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var instanceConsoleConnectionResource = new InstanceConsoleConnection("instanceConsoleConnectionResource", InstanceConsoleConnectionArgs.builder()
    .instanceId("string")
    .publicKey("string")
    .definedTags(Map.of("string", "string"))
    .freeformTags(Map.of("string", "string"))
    .build());
Copy
instance_console_connection_resource = oci.core.InstanceConsoleConnection("instanceConsoleConnectionResource",
    instance_id="string",
    public_key="string",
    defined_tags={
        "string": "string",
    },
    freeform_tags={
        "string": "string",
    })
Copy
const instanceConsoleConnectionResource = new oci.core.InstanceConsoleConnection("instanceConsoleConnectionResource", {
    instanceId: "string",
    publicKey: "string",
    definedTags: {
        string: "string",
    },
    freeformTags: {
        string: "string",
    },
});
Copy
type: oci:Core:InstanceConsoleConnection
properties:
    definedTags:
        string: string
    freeformTags:
        string: string
    instanceId: string
    publicKey: string
Copy

InstanceConsoleConnection Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The InstanceConsoleConnection resource accepts the following input properties:

InstanceId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the instance to create the console connection to.
PublicKey
This property is required.
Changes to this property will trigger replacement.
string

The SSH public key used to authenticate the console connection.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
FreeformTags Dictionary<string, string>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
InstanceId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the instance to create the console connection to.
PublicKey
This property is required.
Changes to this property will trigger replacement.
string

The SSH public key used to authenticate the console connection.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
FreeformTags map[string]string
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
instanceId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of the instance to create the console connection to.
publicKey
This property is required.
Changes to this property will trigger replacement.
String

The SSH public key used to authenticate the console connection.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
freeformTags Map<String,String>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
instanceId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the instance to create the console connection to.
publicKey
This property is required.
Changes to this property will trigger replacement.
string

The SSH public key used to authenticate the console connection.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
freeformTags {[key: string]: string}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
instance_id
This property is required.
Changes to this property will trigger replacement.
str
The OCID of the instance to create the console connection to.
public_key
This property is required.
Changes to this property will trigger replacement.
str

The SSH public key used to authenticate the console connection.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
freeform_tags Mapping[str, str]
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
instanceId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of the instance to create the console connection to.
publicKey
This property is required.
Changes to this property will trigger replacement.
String

The SSH public key used to authenticate the console connection.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
freeformTags Map<String>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

Outputs

All input properties are implicitly available as output properties. Additionally, the InstanceConsoleConnection resource produces the following output properties:

CompartmentId string
The OCID of the compartment to contain the console connection.
ConnectionString string
The SSH connection string for the console connection.
Fingerprint string
The SSH public key's fingerprint for client authentication to the console connection.
Id string
The provider-assigned unique ID for this managed resource.
ServiceHostKeyFingerprint string
The SSH public key's fingerprint for the console connection service host.
State string
The current state of the console connection.
VncConnectionString string
The SSH connection string for the SSH tunnel used to connect to the console connection over VNC.
CompartmentId string
The OCID of the compartment to contain the console connection.
ConnectionString string
The SSH connection string for the console connection.
Fingerprint string
The SSH public key's fingerprint for client authentication to the console connection.
Id string
The provider-assigned unique ID for this managed resource.
ServiceHostKeyFingerprint string
The SSH public key's fingerprint for the console connection service host.
State string
The current state of the console connection.
VncConnectionString string
The SSH connection string for the SSH tunnel used to connect to the console connection over VNC.
compartmentId String
The OCID of the compartment to contain the console connection.
connectionString String
The SSH connection string for the console connection.
fingerprint String
The SSH public key's fingerprint for client authentication to the console connection.
id String
The provider-assigned unique ID for this managed resource.
serviceHostKeyFingerprint String
The SSH public key's fingerprint for the console connection service host.
state String
The current state of the console connection.
vncConnectionString String
The SSH connection string for the SSH tunnel used to connect to the console connection over VNC.
compartmentId string
The OCID of the compartment to contain the console connection.
connectionString string
The SSH connection string for the console connection.
fingerprint string
The SSH public key's fingerprint for client authentication to the console connection.
id string
The provider-assigned unique ID for this managed resource.
serviceHostKeyFingerprint string
The SSH public key's fingerprint for the console connection service host.
state string
The current state of the console connection.
vncConnectionString string
The SSH connection string for the SSH tunnel used to connect to the console connection over VNC.
compartment_id str
The OCID of the compartment to contain the console connection.
connection_string str
The SSH connection string for the console connection.
fingerprint str
The SSH public key's fingerprint for client authentication to the console connection.
id str
The provider-assigned unique ID for this managed resource.
service_host_key_fingerprint str
The SSH public key's fingerprint for the console connection service host.
state str
The current state of the console connection.
vnc_connection_string str
The SSH connection string for the SSH tunnel used to connect to the console connection over VNC.
compartmentId String
The OCID of the compartment to contain the console connection.
connectionString String
The SSH connection string for the console connection.
fingerprint String
The SSH public key's fingerprint for client authentication to the console connection.
id String
The provider-assigned unique ID for this managed resource.
serviceHostKeyFingerprint String
The SSH public key's fingerprint for the console connection service host.
state String
The current state of the console connection.
vncConnectionString String
The SSH connection string for the SSH tunnel used to connect to the console connection over VNC.

Look up Existing InstanceConsoleConnection Resource

Get an existing InstanceConsoleConnection resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: InstanceConsoleConnectionState, opts?: CustomResourceOptions): InstanceConsoleConnection
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compartment_id: Optional[str] = None,
        connection_string: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        fingerprint: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        instance_id: Optional[str] = None,
        public_key: Optional[str] = None,
        service_host_key_fingerprint: Optional[str] = None,
        state: Optional[str] = None,
        vnc_connection_string: Optional[str] = None) -> InstanceConsoleConnection
func GetInstanceConsoleConnection(ctx *Context, name string, id IDInput, state *InstanceConsoleConnectionState, opts ...ResourceOption) (*InstanceConsoleConnection, error)
public static InstanceConsoleConnection Get(string name, Input<string> id, InstanceConsoleConnectionState? state, CustomResourceOptions? opts = null)
public static InstanceConsoleConnection get(String name, Output<String> id, InstanceConsoleConnectionState state, CustomResourceOptions options)
resources:  _:    type: oci:Core:InstanceConsoleConnection    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
CompartmentId string
The OCID of the compartment to contain the console connection.
ConnectionString string
The SSH connection string for the console connection.
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
Fingerprint string
The SSH public key's fingerprint for client authentication to the console connection.
FreeformTags Dictionary<string, string>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
InstanceId Changes to this property will trigger replacement. string
The OCID of the instance to create the console connection to.
PublicKey Changes to this property will trigger replacement. string

The SSH public key used to authenticate the console connection.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

ServiceHostKeyFingerprint string
The SSH public key's fingerprint for the console connection service host.
State string
The current state of the console connection.
VncConnectionString string
The SSH connection string for the SSH tunnel used to connect to the console connection over VNC.
CompartmentId string
The OCID of the compartment to contain the console connection.
ConnectionString string
The SSH connection string for the console connection.
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
Fingerprint string
The SSH public key's fingerprint for client authentication to the console connection.
FreeformTags map[string]string
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
InstanceId Changes to this property will trigger replacement. string
The OCID of the instance to create the console connection to.
PublicKey Changes to this property will trigger replacement. string

The SSH public key used to authenticate the console connection.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

ServiceHostKeyFingerprint string
The SSH public key's fingerprint for the console connection service host.
State string
The current state of the console connection.
VncConnectionString string
The SSH connection string for the SSH tunnel used to connect to the console connection over VNC.
compartmentId String
The OCID of the compartment to contain the console connection.
connectionString String
The SSH connection string for the console connection.
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
fingerprint String
The SSH public key's fingerprint for client authentication to the console connection.
freeformTags Map<String,String>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
instanceId Changes to this property will trigger replacement. String
The OCID of the instance to create the console connection to.
publicKey Changes to this property will trigger replacement. String

The SSH public key used to authenticate the console connection.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

serviceHostKeyFingerprint String
The SSH public key's fingerprint for the console connection service host.
state String
The current state of the console connection.
vncConnectionString String
The SSH connection string for the SSH tunnel used to connect to the console connection over VNC.
compartmentId string
The OCID of the compartment to contain the console connection.
connectionString string
The SSH connection string for the console connection.
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
fingerprint string
The SSH public key's fingerprint for client authentication to the console connection.
freeformTags {[key: string]: string}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
instanceId Changes to this property will trigger replacement. string
The OCID of the instance to create the console connection to.
publicKey Changes to this property will trigger replacement. string

The SSH public key used to authenticate the console connection.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

serviceHostKeyFingerprint string
The SSH public key's fingerprint for the console connection service host.
state string
The current state of the console connection.
vncConnectionString string
The SSH connection string for the SSH tunnel used to connect to the console connection over VNC.
compartment_id str
The OCID of the compartment to contain the console connection.
connection_string str
The SSH connection string for the console connection.
defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
fingerprint str
The SSH public key's fingerprint for client authentication to the console connection.
freeform_tags Mapping[str, str]
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
instance_id Changes to this property will trigger replacement. str
The OCID of the instance to create the console connection to.
public_key Changes to this property will trigger replacement. str

The SSH public key used to authenticate the console connection.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

service_host_key_fingerprint str
The SSH public key's fingerprint for the console connection service host.
state str
The current state of the console connection.
vnc_connection_string str
The SSH connection string for the SSH tunnel used to connect to the console connection over VNC.
compartmentId String
The OCID of the compartment to contain the console connection.
connectionString String
The SSH connection string for the console connection.
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
fingerprint String
The SSH public key's fingerprint for client authentication to the console connection.
freeformTags Map<String>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
instanceId Changes to this property will trigger replacement. String
The OCID of the instance to create the console connection to.
publicKey Changes to this property will trigger replacement. String

The SSH public key used to authenticate the console connection.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

serviceHostKeyFingerprint String
The SSH public key's fingerprint for the console connection service host.
state String
The current state of the console connection.
vncConnectionString String
The SSH connection string for the SSH tunnel used to connect to the console connection over VNC.

Import

InstanceConsoleConnections can be imported using the id, e.g.

$ pulumi import oci:Core/instanceConsoleConnection:InstanceConsoleConnection test_instance_console_connection "id"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.