Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testOracleDbAwsIdentityConnector = new oci.oci.DbmulticloudOracleDbAwsIdentityConnector("test_oracle_db_aws_identity_connector", {
awsLocation: oracleDbAwsIdentityConnectorAwsLocation,
compartmentId: compartmentId,
displayName: oracleDbAwsIdentityConnectorDisplayName,
issuerUrl: oracleDbAwsIdentityConnectorIssuerUrl,
oidcScope: oracleDbAwsIdentityConnectorOidcScope,
resourceId: testResource.id,
serviceRoleDetails: [{
roleArn: oracleDbAwsIdentityConnectorServiceRoleDetailsRoleArn,
servicePrivateEndpoint: oracleDbAwsIdentityConnectorServiceRoleDetailsServicePrivateEndpoint,
serviceType: oracleDbAwsIdentityConnectorServiceRoleDetailsServiceType,
}],
awsAccountId: testAwsAccount.id,
awsStsPrivateEndpoint: oracleDbAwsIdentityConnectorAwsStsPrivateEndpoint,
definedTags: {
"Operations.CostCenter": "42",
},
freeformTags: {
Department: "Finance",
},
});
import pulumi
import pulumi_oci as oci
test_oracle_db_aws_identity_connector = oci.oci.DbmulticloudOracleDbAwsIdentityConnector("test_oracle_db_aws_identity_connector",
aws_location=oracle_db_aws_identity_connector_aws_location,
compartment_id=compartment_id,
display_name=oracle_db_aws_identity_connector_display_name,
issuer_url=oracle_db_aws_identity_connector_issuer_url,
oidc_scope=oracle_db_aws_identity_connector_oidc_scope,
resource_id=test_resource["id"],
service_role_details=[{
"role_arn": oracle_db_aws_identity_connector_service_role_details_role_arn,
"service_private_endpoint": oracle_db_aws_identity_connector_service_role_details_service_private_endpoint,
"service_type": oracle_db_aws_identity_connector_service_role_details_service_type,
}],
aws_account_id=test_aws_account["id"],
aws_sts_private_endpoint=oracle_db_aws_identity_connector_aws_sts_private_endpoint,
defined_tags={
"Operations.CostCenter": "42",
},
freeform_tags={
"Department": "Finance",
})
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/oci"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := oci.NewDbmulticloudOracleDbAwsIdentityConnector(ctx, "test_oracle_db_aws_identity_connector", &oci.DbmulticloudOracleDbAwsIdentityConnectorArgs{
AwsLocation: pulumi.Any(oracleDbAwsIdentityConnectorAwsLocation),
CompartmentId: pulumi.Any(compartmentId),
DisplayName: pulumi.Any(oracleDbAwsIdentityConnectorDisplayName),
IssuerUrl: pulumi.Any(oracleDbAwsIdentityConnectorIssuerUrl),
OidcScope: pulumi.Any(oracleDbAwsIdentityConnectorOidcScope),
ResourceId: pulumi.Any(testResource.Id),
ServiceRoleDetails: oci.DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArray{
&oci.DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs{
RoleArn: pulumi.Any(oracleDbAwsIdentityConnectorServiceRoleDetailsRoleArn),
ServicePrivateEndpoint: pulumi.Any(oracleDbAwsIdentityConnectorServiceRoleDetailsServicePrivateEndpoint),
ServiceType: pulumi.Any(oracleDbAwsIdentityConnectorServiceRoleDetailsServiceType),
},
},
AwsAccountId: pulumi.Any(testAwsAccount.Id),
AwsStsPrivateEndpoint: pulumi.Any(oracleDbAwsIdentityConnectorAwsStsPrivateEndpoint),
DefinedTags: pulumi.StringMap{
"Operations.CostCenter": pulumi.String("42"),
},
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testOracleDbAwsIdentityConnector = new Oci.Oci.DbmulticloudOracleDbAwsIdentityConnector("test_oracle_db_aws_identity_connector", new()
{
AwsLocation = oracleDbAwsIdentityConnectorAwsLocation,
CompartmentId = compartmentId,
DisplayName = oracleDbAwsIdentityConnectorDisplayName,
IssuerUrl = oracleDbAwsIdentityConnectorIssuerUrl,
OidcScope = oracleDbAwsIdentityConnectorOidcScope,
ResourceId = testResource.Id,
ServiceRoleDetails = new[]
{
new Oci.Oci.Inputs.DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs
{
RoleArn = oracleDbAwsIdentityConnectorServiceRoleDetailsRoleArn,
ServicePrivateEndpoint = oracleDbAwsIdentityConnectorServiceRoleDetailsServicePrivateEndpoint,
ServiceType = oracleDbAwsIdentityConnectorServiceRoleDetailsServiceType,
},
},
AwsAccountId = testAwsAccount.Id,
AwsStsPrivateEndpoint = oracleDbAwsIdentityConnectorAwsStsPrivateEndpoint,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
FreeformTags =
{
{ "Department", "Finance" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.oci.DbmulticloudOracleDbAwsIdentityConnector;
import com.pulumi.oci.oci.DbmulticloudOracleDbAwsIdentityConnectorArgs;
import com.pulumi.oci.oci.inputs.DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs;
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 testOracleDbAwsIdentityConnector = new DbmulticloudOracleDbAwsIdentityConnector("testOracleDbAwsIdentityConnector", DbmulticloudOracleDbAwsIdentityConnectorArgs.builder()
.awsLocation(oracleDbAwsIdentityConnectorAwsLocation)
.compartmentId(compartmentId)
.displayName(oracleDbAwsIdentityConnectorDisplayName)
.issuerUrl(oracleDbAwsIdentityConnectorIssuerUrl)
.oidcScope(oracleDbAwsIdentityConnectorOidcScope)
.resourceId(testResource.id())
.serviceRoleDetails(DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs.builder()
.roleArn(oracleDbAwsIdentityConnectorServiceRoleDetailsRoleArn)
.servicePrivateEndpoint(oracleDbAwsIdentityConnectorServiceRoleDetailsServicePrivateEndpoint)
.serviceType(oracleDbAwsIdentityConnectorServiceRoleDetailsServiceType)
.build())
.awsAccountId(testAwsAccount.id())
.awsStsPrivateEndpoint(oracleDbAwsIdentityConnectorAwsStsPrivateEndpoint)
.definedTags(Map.of("Operations.CostCenter", "42"))
.freeformTags(Map.of("Department", "Finance"))
.build());
}
}
resources:
testOracleDbAwsIdentityConnector:
type: oci:oci:DbmulticloudOracleDbAwsIdentityConnector
name: test_oracle_db_aws_identity_connector
properties:
awsLocation: ${oracleDbAwsIdentityConnectorAwsLocation}
compartmentId: ${compartmentId}
displayName: ${oracleDbAwsIdentityConnectorDisplayName}
issuerUrl: ${oracleDbAwsIdentityConnectorIssuerUrl}
oidcScope: ${oracleDbAwsIdentityConnectorOidcScope}
resourceId: ${testResource.id}
serviceRoleDetails:
- roleArn: ${oracleDbAwsIdentityConnectorServiceRoleDetailsRoleArn}
servicePrivateEndpoint: ${oracleDbAwsIdentityConnectorServiceRoleDetailsServicePrivateEndpoint}
serviceType: ${oracleDbAwsIdentityConnectorServiceRoleDetailsServiceType}
awsAccountId: ${testAwsAccount.id}
awsStsPrivateEndpoint: ${oracleDbAwsIdentityConnectorAwsStsPrivateEndpoint}
definedTags:
Operations.CostCenter: '42'
freeformTags:
Department: Finance
Create DbmulticloudOracleDbAwsIdentityConnector Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DbmulticloudOracleDbAwsIdentityConnector(name: string, args: DbmulticloudOracleDbAwsIdentityConnectorArgs, opts?: CustomResourceOptions);@overload
def DbmulticloudOracleDbAwsIdentityConnector(resource_name: str,
args: DbmulticloudOracleDbAwsIdentityConnectorArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DbmulticloudOracleDbAwsIdentityConnector(resource_name: str,
opts: Optional[ResourceOptions] = None,
aws_location: Optional[str] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
issuer_url: Optional[str] = None,
oidc_scope: Optional[str] = None,
resource_id: Optional[str] = None,
service_role_details: Optional[Sequence[DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs]] = None,
aws_account_id: Optional[str] = None,
aws_sts_private_endpoint: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
freeform_tags: Optional[Mapping[str, str]] = None)func NewDbmulticloudOracleDbAwsIdentityConnector(ctx *Context, name string, args DbmulticloudOracleDbAwsIdentityConnectorArgs, opts ...ResourceOption) (*DbmulticloudOracleDbAwsIdentityConnector, error)public DbmulticloudOracleDbAwsIdentityConnector(string name, DbmulticloudOracleDbAwsIdentityConnectorArgs args, CustomResourceOptions? opts = null)
public DbmulticloudOracleDbAwsIdentityConnector(String name, DbmulticloudOracleDbAwsIdentityConnectorArgs args)
public DbmulticloudOracleDbAwsIdentityConnector(String name, DbmulticloudOracleDbAwsIdentityConnectorArgs args, CustomResourceOptions options)
type: oci:oci:DbmulticloudOracleDbAwsIdentityConnector
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DbmulticloudOracleDbAwsIdentityConnectorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DbmulticloudOracleDbAwsIdentityConnectorArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DbmulticloudOracleDbAwsIdentityConnectorArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DbmulticloudOracleDbAwsIdentityConnectorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DbmulticloudOracleDbAwsIdentityConnectorArgs
- 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 dbmulticloudOracleDbAwsIdentityConnectorResource = new Oci.Oci.DbmulticloudOracleDbAwsIdentityConnector("dbmulticloudOracleDbAwsIdentityConnectorResource", new()
{
AwsLocation = "string",
CompartmentId = "string",
DisplayName = "string",
IssuerUrl = "string",
OidcScope = "string",
ResourceId = "string",
ServiceRoleDetails = new[]
{
new Oci.Oci.Inputs.DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs
{
RoleArn = "string",
ServicePrivateEndpoint = "string",
ServiceType = "string",
AssumeRoleStatus = "string",
AwsNodes = new[]
{
new Oci.Oci.Inputs.DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailAwsNodeArgs
{
HostId = "string",
HostName = "string",
Status = "string",
TimeLastChecked = "string",
},
},
},
},
AwsAccountId = "string",
AwsStsPrivateEndpoint = "string",
DefinedTags =
{
{ "string", "string" },
},
FreeformTags =
{
{ "string", "string" },
},
});
example, err := oci.NewDbmulticloudOracleDbAwsIdentityConnector(ctx, "dbmulticloudOracleDbAwsIdentityConnectorResource", &oci.DbmulticloudOracleDbAwsIdentityConnectorArgs{
AwsLocation: pulumi.String("string"),
CompartmentId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
IssuerUrl: pulumi.String("string"),
OidcScope: pulumi.String("string"),
ResourceId: pulumi.String("string"),
ServiceRoleDetails: oci.DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArray{
&oci.DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs{
RoleArn: pulumi.String("string"),
ServicePrivateEndpoint: pulumi.String("string"),
ServiceType: pulumi.String("string"),
AssumeRoleStatus: pulumi.String("string"),
AwsNodes: oci.DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailAwsNodeArray{
&oci.DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailAwsNodeArgs{
HostId: pulumi.String("string"),
HostName: pulumi.String("string"),
Status: pulumi.String("string"),
TimeLastChecked: pulumi.String("string"),
},
},
},
},
AwsAccountId: pulumi.String("string"),
AwsStsPrivateEndpoint: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var dbmulticloudOracleDbAwsIdentityConnectorResource = new DbmulticloudOracleDbAwsIdentityConnector("dbmulticloudOracleDbAwsIdentityConnectorResource", DbmulticloudOracleDbAwsIdentityConnectorArgs.builder()
.awsLocation("string")
.compartmentId("string")
.displayName("string")
.issuerUrl("string")
.oidcScope("string")
.resourceId("string")
.serviceRoleDetails(DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs.builder()
.roleArn("string")
.servicePrivateEndpoint("string")
.serviceType("string")
.assumeRoleStatus("string")
.awsNodes(DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailAwsNodeArgs.builder()
.hostId("string")
.hostName("string")
.status("string")
.timeLastChecked("string")
.build())
.build())
.awsAccountId("string")
.awsStsPrivateEndpoint("string")
.definedTags(Map.of("string", "string"))
.freeformTags(Map.of("string", "string"))
.build());
dbmulticloud_oracle_db_aws_identity_connector_resource = oci.oci.DbmulticloudOracleDbAwsIdentityConnector("dbmulticloudOracleDbAwsIdentityConnectorResource",
aws_location="string",
compartment_id="string",
display_name="string",
issuer_url="string",
oidc_scope="string",
resource_id="string",
service_role_details=[{
"role_arn": "string",
"service_private_endpoint": "string",
"service_type": "string",
"assume_role_status": "string",
"aws_nodes": [{
"host_id": "string",
"host_name": "string",
"status": "string",
"time_last_checked": "string",
}],
}],
aws_account_id="string",
aws_sts_private_endpoint="string",
defined_tags={
"string": "string",
},
freeform_tags={
"string": "string",
})
const dbmulticloudOracleDbAwsIdentityConnectorResource = new oci.oci.DbmulticloudOracleDbAwsIdentityConnector("dbmulticloudOracleDbAwsIdentityConnectorResource", {
awsLocation: "string",
compartmentId: "string",
displayName: "string",
issuerUrl: "string",
oidcScope: "string",
resourceId: "string",
serviceRoleDetails: [{
roleArn: "string",
servicePrivateEndpoint: "string",
serviceType: "string",
assumeRoleStatus: "string",
awsNodes: [{
hostId: "string",
hostName: "string",
status: "string",
timeLastChecked: "string",
}],
}],
awsAccountId: "string",
awsStsPrivateEndpoint: "string",
definedTags: {
string: "string",
},
freeformTags: {
string: "string",
},
});
type: oci:oci:DbmulticloudOracleDbAwsIdentityConnector
properties:
awsAccountId: string
awsLocation: string
awsStsPrivateEndpoint: string
compartmentId: string
definedTags:
string: string
displayName: string
freeformTags:
string: string
issuerUrl: string
oidcScope: string
resourceId: string
serviceRoleDetails:
- assumeRoleStatus: string
awsNodes:
- hostId: string
hostName: string
status: string
timeLastChecked: string
roleArn: string
servicePrivateEndpoint: string
serviceType: string
DbmulticloudOracleDbAwsIdentityConnector 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 DbmulticloudOracleDbAwsIdentityConnector resource accepts the following input properties:
- Aws
Location string - (Updatable) AWS resource location.
- Compartment
Id string - (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
- Display
Name string - (Updatable) Oracle DB Google AWS Identity Connector resource name.
- Issuer
Url string - (Updatable) OIDC token issuer Url.
- Oidc
Scope string - (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
- Resource
Id string - (Updatable) The OCID of the AWS VM Cluster resource.
- Service
Role List<DbmulticloudDetails Oracle Db Aws Identity Connector Service Role Detail> - (Updatable) Service role details and respective Amazon resource nam of Role.
- Aws
Account stringId - (Updatable) AWS Account ID.
- Aws
Sts stringPrivate Endpoint - (Updatable) Private endpoint of AWS Security Token Service.
- 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"} - 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"}
- Aws
Location string - (Updatable) AWS resource location.
- Compartment
Id string - (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
- Display
Name string - (Updatable) Oracle DB Google AWS Identity Connector resource name.
- Issuer
Url string - (Updatable) OIDC token issuer Url.
- Oidc
Scope string - (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
- Resource
Id string - (Updatable) The OCID of the AWS VM Cluster resource.
- Service
Role []DbmulticloudDetails Oracle Db Aws Identity Connector Service Role Detail Args - (Updatable) Service role details and respective Amazon resource nam of Role.
- Aws
Account stringId - (Updatable) AWS Account ID.
- Aws
Sts stringPrivate Endpoint - (Updatable) Private endpoint of AWS Security Token Service.
- 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"} - 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"}
- aws
Location String - (Updatable) AWS resource location.
- compartment
Id String - (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
- display
Name String - (Updatable) Oracle DB Google AWS Identity Connector resource name.
- issuer
Url String - (Updatable) OIDC token issuer Url.
- oidc
Scope String - (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
- resource
Id String - (Updatable) The OCID of the AWS VM Cluster resource.
- service
Role List<DbmulticloudDetails Oracle Db Aws Identity Connector Service Role Detail> - (Updatable) Service role details and respective Amazon resource nam of Role.
- aws
Account StringId - (Updatable) AWS Account ID.
- aws
Sts StringPrivate Endpoint - (Updatable) Private endpoint of AWS Security Token Service.
- 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"} - 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"}
- aws
Location string - (Updatable) AWS resource location.
- compartment
Id string - (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
- display
Name string - (Updatable) Oracle DB Google AWS Identity Connector resource name.
- issuer
Url string - (Updatable) OIDC token issuer Url.
- oidc
Scope string - (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
- resource
Id string - (Updatable) The OCID of the AWS VM Cluster resource.
- service
Role DbmulticloudDetails Oracle Db Aws Identity Connector Service Role Detail[] - (Updatable) Service role details and respective Amazon resource nam of Role.
- aws
Account stringId - (Updatable) AWS Account ID.
- aws
Sts stringPrivate Endpoint - (Updatable) Private endpoint of AWS Security Token Service.
- {[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"} - {[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"}
- aws_
location str - (Updatable) AWS resource location.
- compartment_
id str - (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
- display_
name str - (Updatable) Oracle DB Google AWS Identity Connector resource name.
- issuer_
url str - (Updatable) OIDC token issuer Url.
- oidc_
scope str - (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
- resource_
id str - (Updatable) The OCID of the AWS VM Cluster resource.
- service_
role_ Sequence[Dbmulticlouddetails Oracle Db Aws Identity Connector Service Role Detail Args] - (Updatable) Service role details and respective Amazon resource nam of Role.
- aws_
account_ strid - (Updatable) AWS Account ID.
- aws_
sts_ strprivate_ endpoint - (Updatable) Private endpoint of AWS Security Token Service.
- 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"} - 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"}
- aws
Location String - (Updatable) AWS resource location.
- compartment
Id String - (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
- display
Name String - (Updatable) Oracle DB Google AWS Identity Connector resource name.
- issuer
Url String - (Updatable) OIDC token issuer Url.
- oidc
Scope String - (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
- resource
Id String - (Updatable) The OCID of the AWS VM Cluster resource.
- service
Role List<Property Map>Details - (Updatable) Service role details and respective Amazon resource nam of Role.
- aws
Account StringId - (Updatable) AWS Account ID.
- aws
Sts StringPrivate Endpoint - (Updatable) Private endpoint of AWS Security Token Service.
- 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"} - 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 DbmulticloudOracleDbAwsIdentityConnector resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- State string
- The current lifecycle state of the AWS Identity Connector resource.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - Time when the Oracle DB AWS Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- Time
Updated string - Time when the Oracle DB AWS Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- State string
- The current lifecycle state of the AWS Identity Connector resource.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - Time when the Oracle DB AWS Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- Time
Updated string - Time when the Oracle DB AWS Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- state String
- The current lifecycle state of the AWS Identity Connector resource.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - Time when the Oracle DB AWS Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- time
Updated String - Time when the Oracle DB AWS Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- state string
- The current lifecycle state of the AWS Identity Connector resource.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - Time when the Oracle DB AWS Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- time
Updated string - Time when the Oracle DB AWS Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_
state_ strdetails - Description of the current lifecycle state in more detail.
- state str
- The current lifecycle state of the AWS Identity Connector resource.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time_
created str - Time when the Oracle DB AWS Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- time_
updated str - Time when the Oracle DB AWS Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- state String
- The current lifecycle state of the AWS Identity Connector resource.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - Time when the Oracle DB AWS Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- time
Updated String - Time when the Oracle DB AWS Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
Look up Existing DbmulticloudOracleDbAwsIdentityConnector Resource
Get an existing DbmulticloudOracleDbAwsIdentityConnector 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?: DbmulticloudOracleDbAwsIdentityConnectorState, opts?: CustomResourceOptions): DbmulticloudOracleDbAwsIdentityConnector@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
aws_account_id: Optional[str] = None,
aws_location: Optional[str] = None,
aws_sts_private_endpoint: Optional[str] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
issuer_url: Optional[str] = None,
lifecycle_state_details: Optional[str] = None,
oidc_scope: Optional[str] = None,
resource_id: Optional[str] = None,
service_role_details: Optional[Sequence[DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs]] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> DbmulticloudOracleDbAwsIdentityConnectorfunc GetDbmulticloudOracleDbAwsIdentityConnector(ctx *Context, name string, id IDInput, state *DbmulticloudOracleDbAwsIdentityConnectorState, opts ...ResourceOption) (*DbmulticloudOracleDbAwsIdentityConnector, error)public static DbmulticloudOracleDbAwsIdentityConnector Get(string name, Input<string> id, DbmulticloudOracleDbAwsIdentityConnectorState? state, CustomResourceOptions? opts = null)public static DbmulticloudOracleDbAwsIdentityConnector get(String name, Output<String> id, DbmulticloudOracleDbAwsIdentityConnectorState state, CustomResourceOptions options)resources: _: type: oci:oci:DbmulticloudOracleDbAwsIdentityConnector get: id: ${id}- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- Aws
Account stringId - (Updatable) AWS Account ID.
- Aws
Location string - (Updatable) AWS resource location.
- Aws
Sts stringPrivate Endpoint - (Updatable) Private endpoint of AWS Security Token Service.
- Compartment
Id string - (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
- 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"} - Display
Name string - (Updatable) Oracle DB Google AWS Identity Connector resource name.
- 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"} - Issuer
Url string - (Updatable) OIDC token issuer Url.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- Oidc
Scope string - (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
- Resource
Id string - (Updatable) The OCID of the AWS VM Cluster resource.
- Service
Role List<DbmulticloudDetails Oracle Db Aws Identity Connector Service Role Detail> - (Updatable) Service role details and respective Amazon resource nam of Role.
- State string
- The current lifecycle state of the AWS Identity Connector resource.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - Time when the Oracle DB AWS Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- Time
Updated string - Time when the Oracle DB AWS Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- Aws
Account stringId - (Updatable) AWS Account ID.
- Aws
Location string - (Updatable) AWS resource location.
- Aws
Sts stringPrivate Endpoint - (Updatable) Private endpoint of AWS Security Token Service.
- Compartment
Id string - (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
- 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"} - Display
Name string - (Updatable) Oracle DB Google AWS Identity Connector resource name.
- 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"} - Issuer
Url string - (Updatable) OIDC token issuer Url.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- Oidc
Scope string - (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
- Resource
Id string - (Updatable) The OCID of the AWS VM Cluster resource.
- Service
Role []DbmulticloudDetails Oracle Db Aws Identity Connector Service Role Detail Args - (Updatable) Service role details and respective Amazon resource nam of Role.
- State string
- The current lifecycle state of the AWS Identity Connector resource.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - Time when the Oracle DB AWS Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- Time
Updated string - Time when the Oracle DB AWS Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- aws
Account StringId - (Updatable) AWS Account ID.
- aws
Location String - (Updatable) AWS resource location.
- aws
Sts StringPrivate Endpoint - (Updatable) Private endpoint of AWS Security Token Service.
- compartment
Id String - (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
- 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"} - display
Name String - (Updatable) Oracle DB Google AWS Identity Connector resource name.
- 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"} - issuer
Url String - (Updatable) OIDC token issuer Url.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- oidc
Scope String - (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
- resource
Id String - (Updatable) The OCID of the AWS VM Cluster resource.
- service
Role List<DbmulticloudDetails Oracle Db Aws Identity Connector Service Role Detail> - (Updatable) Service role details and respective Amazon resource nam of Role.
- state String
- The current lifecycle state of the AWS Identity Connector resource.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - Time when the Oracle DB AWS Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- time
Updated String - Time when the Oracle DB AWS Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- aws
Account stringId - (Updatable) AWS Account ID.
- aws
Location string - (Updatable) AWS resource location.
- aws
Sts stringPrivate Endpoint - (Updatable) Private endpoint of AWS Security Token Service.
- compartment
Id string - (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
- {[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"} - display
Name string - (Updatable) Oracle DB Google AWS Identity Connector resource name.
- {[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"} - issuer
Url string - (Updatable) OIDC token issuer Url.
- lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- oidc
Scope string - (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
- resource
Id string - (Updatable) The OCID of the AWS VM Cluster resource.
- service
Role DbmulticloudDetails Oracle Db Aws Identity Connector Service Role Detail[] - (Updatable) Service role details and respective Amazon resource nam of Role.
- state string
- The current lifecycle state of the AWS Identity Connector resource.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - Time when the Oracle DB AWS Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- time
Updated string - Time when the Oracle DB AWS Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- aws_
account_ strid - (Updatable) AWS Account ID.
- aws_
location str - (Updatable) AWS resource location.
- aws_
sts_ strprivate_ endpoint - (Updatable) Private endpoint of AWS Security Token Service.
- compartment_
id str - (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
- 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"} - display_
name str - (Updatable) Oracle DB Google AWS Identity Connector resource name.
- 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"} - issuer_
url str - (Updatable) OIDC token issuer Url.
- lifecycle_
state_ strdetails - Description of the current lifecycle state in more detail.
- oidc_
scope str - (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
- resource_
id str - (Updatable) The OCID of the AWS VM Cluster resource.
- service_
role_ Sequence[Dbmulticlouddetails Oracle Db Aws Identity Connector Service Role Detail Args] - (Updatable) Service role details and respective Amazon resource nam of Role.
- state str
- The current lifecycle state of the AWS Identity Connector resource.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time_
created str - Time when the Oracle DB AWS Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- time_
updated str - Time when the Oracle DB AWS Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- aws
Account StringId - (Updatable) AWS Account ID.
- aws
Location String - (Updatable) AWS resource location.
- aws
Sts StringPrivate Endpoint - (Updatable) Private endpoint of AWS Security Token Service.
- compartment
Id String - (Updatable) The OCID of the compartment that contains Oracle DB AWS Identity Connector resource.
- 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"} - display
Name String - (Updatable) Oracle DB Google AWS Identity Connector resource name.
- 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"} - issuer
Url String - (Updatable) OIDC token issuer Url.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- oidc
Scope String - (Updatable) Oracle Cloud Infrastructure IAM Domain scope for issuer URL.
- resource
Id String - (Updatable) The OCID of the AWS VM Cluster resource.
- service
Role List<Property Map>Details - (Updatable) Service role details and respective Amazon resource nam of Role.
- state String
- The current lifecycle state of the AWS Identity Connector resource.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - Time when the Oracle DB AWS Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- time
Updated String - Time when the Oracle DB AWS Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
Supporting Types
DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetail, DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailArgs
- Role
Arn string - (Updatable) Amazon resource name AWSof the IAM role.
- Service
Private stringEndpoint - (Updatable) Private endpoint of the AWS service.
- Service
Type string (Updatable) Type of service.
** 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
- Assume
Role stringStatus - Assume role status.
- Aws
Nodes List<DbmulticloudOracle Db Aws Identity Connector Service Role Detail Aws Node> - List of all VMs where AWS Identity Connector is configured for Oracle DB Cloud VM Cluster.
- Role
Arn string - (Updatable) Amazon resource name AWSof the IAM role.
- Service
Private stringEndpoint - (Updatable) Private endpoint of the AWS service.
- Service
Type string (Updatable) Type of service.
** 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
- Assume
Role stringStatus - Assume role status.
- Aws
Nodes []DbmulticloudOracle Db Aws Identity Connector Service Role Detail Aws Node - List of all VMs where AWS Identity Connector is configured for Oracle DB Cloud VM Cluster.
- role
Arn String - (Updatable) Amazon resource name AWSof the IAM role.
- service
Private StringEndpoint - (Updatable) Private endpoint of the AWS service.
- service
Type String (Updatable) Type of service.
** 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
- assume
Role StringStatus - Assume role status.
- aws
Nodes List<DbmulticloudOracle Db Aws Identity Connector Service Role Detail Aws Node> - List of all VMs where AWS Identity Connector is configured for Oracle DB Cloud VM Cluster.
- role
Arn string - (Updatable) Amazon resource name AWSof the IAM role.
- service
Private stringEndpoint - (Updatable) Private endpoint of the AWS service.
- service
Type string (Updatable) Type of service.
** 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
- assume
Role stringStatus - Assume role status.
- aws
Nodes DbmulticloudOracle Db Aws Identity Connector Service Role Detail Aws Node[] - List of all VMs where AWS Identity Connector is configured for Oracle DB Cloud VM Cluster.
- role_
arn str - (Updatable) Amazon resource name AWSof the IAM role.
- service_
private_ strendpoint - (Updatable) Private endpoint of the AWS service.
- service_
type str (Updatable) Type of service.
** 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
- assume_
role_ strstatus - Assume role status.
- aws_
nodes Sequence[DbmulticloudOracle Db Aws Identity Connector Service Role Detail Aws Node] - List of all VMs where AWS Identity Connector is configured for Oracle DB Cloud VM Cluster.
- role
Arn String - (Updatable) Amazon resource name AWSof the IAM role.
- service
Private StringEndpoint - (Updatable) Private endpoint of the AWS service.
- service
Type String (Updatable) Type of service.
** 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
- assume
Role StringStatus - Assume role status.
- aws
Nodes List<Property Map> - List of all VMs where AWS Identity Connector is configured for Oracle DB Cloud VM Cluster.
DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailAwsNode, DbmulticloudOracleDbAwsIdentityConnectorServiceRoleDetailAwsNodeArgs
- Host
Id string - AWS host ID.
- Host
Name string - AWS Host name or Identity Connector name.
- Status string
- The current status of the AWS Identity Connector resource.
- Time
Last stringChecked - Time when the AWS Identity Connector's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- Host
Id string - AWS host ID.
- Host
Name string - AWS Host name or Identity Connector name.
- Status string
- The current status of the AWS Identity Connector resource.
- Time
Last stringChecked - Time when the AWS Identity Connector's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- host
Id String - AWS host ID.
- host
Name String - AWS Host name or Identity Connector name.
- status String
- The current status of the AWS Identity Connector resource.
- time
Last StringChecked - Time when the AWS Identity Connector's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- host
Id string - AWS host ID.
- host
Name string - AWS Host name or Identity Connector name.
- status string
- The current status of the AWS Identity Connector resource.
- time
Last stringChecked - Time when the AWS Identity Connector's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- host_
id str - AWS host ID.
- host_
name str - AWS Host name or Identity Connector name.
- status str
- The current status of the AWS Identity Connector resource.
- time_
last_ strchecked - Time when the AWS Identity Connector's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
- host
Id String - AWS host ID.
- host
Name String - AWS Host name or Identity Connector name.
- status String
- The current status of the AWS Identity Connector resource.
- time
Last StringChecked - Time when the AWS Identity Connector's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
Import
OracleDbAwsIdentityConnectors can be imported using the id, e.g.
$ pulumi import oci:oci/dbmulticloudOracleDbAwsIdentityConnector:DbmulticloudOracleDbAwsIdentityConnector test_oracle_db_aws_identity_connector "id"
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
ociTerraform Provider.
