oci.Kms.EkmsPrivateEndpoint
Explore with Pulumi AI
This resource provides the Ekms Private Endpoint resource in Oracle Cloud Infrastructure Kms service.
Create a new EKMS private endpoint used to connect to external key manager system
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testEkmsPrivateEndpoint = new oci.kms.EkmsPrivateEndpoint("test_ekms_private_endpoint", {
caBundle: ekmsPrivateEndpointCaBundle,
compartmentId: compartmentId,
displayName: ekmsPrivateEndpointDisplayName,
externalKeyManagerIp: ekmsPrivateEndpointExternalKeyManagerIp,
subnetId: testSubnet.id,
definedTags: {
"foo-namespace.bar-key": "value",
},
freeformTags: {
"bar-key": "value",
},
port: ekmsPrivateEndpointPort,
});
import pulumi
import pulumi_oci as oci
test_ekms_private_endpoint = oci.kms.EkmsPrivateEndpoint("test_ekms_private_endpoint",
ca_bundle=ekms_private_endpoint_ca_bundle,
compartment_id=compartment_id,
display_name=ekms_private_endpoint_display_name,
external_key_manager_ip=ekms_private_endpoint_external_key_manager_ip,
subnet_id=test_subnet["id"],
defined_tags={
"foo-namespace.bar-key": "value",
},
freeform_tags={
"bar-key": "value",
},
port=ekms_private_endpoint_port)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/Kms"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Kms.NewEkmsPrivateEndpoint(ctx, "test_ekms_private_endpoint", &Kms.EkmsPrivateEndpointArgs{
CaBundle: pulumi.Any(ekmsPrivateEndpointCaBundle),
CompartmentId: pulumi.Any(compartmentId),
DisplayName: pulumi.Any(ekmsPrivateEndpointDisplayName),
ExternalKeyManagerIp: pulumi.Any(ekmsPrivateEndpointExternalKeyManagerIp),
SubnetId: pulumi.Any(testSubnet.Id),
DefinedTags: pulumi.Map{
"foo-namespace.bar-key": pulumi.Any("value"),
},
FreeformTags: pulumi.Map{
"bar-key": pulumi.Any("value"),
},
Port: pulumi.Any(ekmsPrivateEndpointPort),
})
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 testEkmsPrivateEndpoint = new Oci.Kms.EkmsPrivateEndpoint("test_ekms_private_endpoint", new()
{
CaBundle = ekmsPrivateEndpointCaBundle,
CompartmentId = compartmentId,
DisplayName = ekmsPrivateEndpointDisplayName,
ExternalKeyManagerIp = ekmsPrivateEndpointExternalKeyManagerIp,
SubnetId = testSubnet.Id,
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
FreeformTags =
{
{ "bar-key", "value" },
},
Port = ekmsPrivateEndpointPort,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Kms.EkmsPrivateEndpoint;
import com.pulumi.oci.Kms.EkmsPrivateEndpointArgs;
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 testEkmsPrivateEndpoint = new EkmsPrivateEndpoint("testEkmsPrivateEndpoint", EkmsPrivateEndpointArgs.builder()
.caBundle(ekmsPrivateEndpointCaBundle)
.compartmentId(compartmentId)
.displayName(ekmsPrivateEndpointDisplayName)
.externalKeyManagerIp(ekmsPrivateEndpointExternalKeyManagerIp)
.subnetId(testSubnet.id())
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.freeformTags(Map.of("bar-key", "value"))
.port(ekmsPrivateEndpointPort)
.build());
}
}
resources:
testEkmsPrivateEndpoint:
type: oci:Kms:EkmsPrivateEndpoint
name: test_ekms_private_endpoint
properties:
caBundle: ${ekmsPrivateEndpointCaBundle}
compartmentId: ${compartmentId}
displayName: ${ekmsPrivateEndpointDisplayName}
externalKeyManagerIp: ${ekmsPrivateEndpointExternalKeyManagerIp}
subnetId: ${testSubnet.id}
definedTags:
foo-namespace.bar-key: value
freeformTags:
bar-key: value
port: ${ekmsPrivateEndpointPort}
Create EkmsPrivateEndpoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EkmsPrivateEndpoint(name: string, args: EkmsPrivateEndpointArgs, opts?: CustomResourceOptions);
@overload
def EkmsPrivateEndpoint(resource_name: str,
args: EkmsPrivateEndpointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def EkmsPrivateEndpoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
ca_bundle: Optional[str] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
external_key_manager_ip: Optional[str] = None,
subnet_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
port: Optional[int] = None)
func NewEkmsPrivateEndpoint(ctx *Context, name string, args EkmsPrivateEndpointArgs, opts ...ResourceOption) (*EkmsPrivateEndpoint, error)
public EkmsPrivateEndpoint(string name, EkmsPrivateEndpointArgs args, CustomResourceOptions? opts = null)
public EkmsPrivateEndpoint(String name, EkmsPrivateEndpointArgs args)
public EkmsPrivateEndpoint(String name, EkmsPrivateEndpointArgs args, CustomResourceOptions options)
type: oci:Kms:EkmsPrivateEndpoint
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 EkmsPrivateEndpointArgs
- 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 EkmsPrivateEndpointArgs
- 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 EkmsPrivateEndpointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EkmsPrivateEndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EkmsPrivateEndpointArgs
- 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 ekmsPrivateEndpointResource = new Oci.Kms.EkmsPrivateEndpoint("ekmsPrivateEndpointResource", new()
{
CaBundle = "string",
CompartmentId = "string",
DisplayName = "string",
ExternalKeyManagerIp = "string",
SubnetId = "string",
DefinedTags =
{
{ "string", "any" },
},
FreeformTags =
{
{ "string", "any" },
},
Port = 0,
});
example, err := Kms.NewEkmsPrivateEndpoint(ctx, "ekmsPrivateEndpointResource", &Kms.EkmsPrivateEndpointArgs{
CaBundle: pulumi.String("string"),
CompartmentId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
ExternalKeyManagerIp: pulumi.String("string"),
SubnetId: pulumi.String("string"),
DefinedTags: pulumi.Map{
"string": pulumi.Any("any"),
},
FreeformTags: pulumi.Map{
"string": pulumi.Any("any"),
},
Port: pulumi.Int(0),
})
var ekmsPrivateEndpointResource = new EkmsPrivateEndpoint("ekmsPrivateEndpointResource", EkmsPrivateEndpointArgs.builder()
.caBundle("string")
.compartmentId("string")
.displayName("string")
.externalKeyManagerIp("string")
.subnetId("string")
.definedTags(Map.of("string", "any"))
.freeformTags(Map.of("string", "any"))
.port(0)
.build());
ekms_private_endpoint_resource = oci.kms.EkmsPrivateEndpoint("ekmsPrivateEndpointResource",
ca_bundle="string",
compartment_id="string",
display_name="string",
external_key_manager_ip="string",
subnet_id="string",
defined_tags={
"string": "any",
},
freeform_tags={
"string": "any",
},
port=0)
const ekmsPrivateEndpointResource = new oci.kms.EkmsPrivateEndpoint("ekmsPrivateEndpointResource", {
caBundle: "string",
compartmentId: "string",
displayName: "string",
externalKeyManagerIp: "string",
subnetId: "string",
definedTags: {
string: "any",
},
freeformTags: {
string: "any",
},
port: 0,
});
type: oci:Kms:EkmsPrivateEndpoint
properties:
caBundle: string
compartmentId: string
definedTags:
string: any
displayName: string
externalKeyManagerIp: string
freeformTags:
string: any
port: 0
subnetId: string
EkmsPrivateEndpoint Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The EkmsPrivateEndpoint resource accepts the following input properties:
- Ca
Bundle string - CABundle to validate TLS certificate of the external key manager system in PEM format
- Compartment
Id string - Compartment identifier.
- Display
Name string - (Updatable) Display name of the EKMS private endpoint resource being created.
- External
Key stringManager Ip - External private IP to connect to from this EKMS private endpoint
- Subnet
Id string The OCID of subnet in which the EKMS private endpoint is to be created
** 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
- Dictionary<string, object>
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- Dictionary<string, object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Port int
- The port of the external key manager system
- Ca
Bundle string - CABundle to validate TLS certificate of the external key manager system in PEM format
- Compartment
Id string - Compartment identifier.
- Display
Name string - (Updatable) Display name of the EKMS private endpoint resource being created.
- External
Key stringManager Ip - External private IP to connect to from this EKMS private endpoint
- Subnet
Id string The OCID of subnet in which the EKMS private endpoint is to be created
** 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
- map[string]interface{}
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- map[string]interface{}
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Port int
- The port of the external key manager system
- ca
Bundle String - CABundle to validate TLS certificate of the external key manager system in PEM format
- compartment
Id String - Compartment identifier.
- display
Name String - (Updatable) Display name of the EKMS private endpoint resource being created.
- external
Key StringManager Ip - External private IP to connect to from this EKMS private endpoint
- subnet
Id String The OCID of subnet in which the EKMS private endpoint is to be created
** 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
- Map<String,Object>
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- Map<String,Object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- port Integer
- The port of the external key manager system
- ca
Bundle string - CABundle to validate TLS certificate of the external key manager system in PEM format
- compartment
Id string - Compartment identifier.
- display
Name string - (Updatable) Display name of the EKMS private endpoint resource being created.
- external
Key stringManager Ip - External private IP to connect to from this EKMS private endpoint
- subnet
Id string The OCID of subnet in which the EKMS private endpoint is to be created
** 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
- {[key: string]: any}
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- {[key: string]: any}
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- port number
- The port of the external key manager system
- ca_
bundle str - CABundle to validate TLS certificate of the external key manager system in PEM format
- compartment_
id str - Compartment identifier.
- display_
name str - (Updatable) Display name of the EKMS private endpoint resource being created.
- external_
key_ strmanager_ ip - External private IP to connect to from this EKMS private endpoint
- subnet_
id str The OCID of subnet in which the EKMS private endpoint is to be created
** 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
- Mapping[str, Any]
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- Mapping[str, Any]
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- port int
- The port of the external key manager system
- ca
Bundle String - CABundle to validate TLS certificate of the external key manager system in PEM format
- compartment
Id String - Compartment identifier.
- display
Name String - (Updatable) Display name of the EKMS private endpoint resource being created.
- external
Key StringManager Ip - External private IP to connect to from this EKMS private endpoint
- subnet
Id String The OCID of subnet in which the EKMS private endpoint is to be created
** 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
- Map<Any>
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- Map<Any>
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- port Number
- The port of the external key manager system
Outputs
All input properties are implicitly available as output properties. Additionally, the EkmsPrivateEndpoint resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
- Private
Endpoint stringIp - The IP address in the customer's VCN for the EKMS private endpoint. This is taken from subnet
- State string
- The current state of the EKMS private endpoint resource.
- Time
Created string - The time the EKMS private endpoint was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time the EKMS private endpoint was updated. An RFC3339 formatted datetime string.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
- Private
Endpoint stringIp - The IP address in the customer's VCN for the EKMS private endpoint. This is taken from subnet
- State string
- The current state of the EKMS private endpoint resource.
- Time
Created string - The time the EKMS private endpoint was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time the EKMS private endpoint was updated. An RFC3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
- private
Endpoint StringIp - The IP address in the customer's VCN for the EKMS private endpoint. This is taken from subnet
- state String
- The current state of the EKMS private endpoint resource.
- time
Created String - The time the EKMS private endpoint was created. An RFC3339 formatted datetime string.
- time
Updated String - The time the EKMS private endpoint was updated. An RFC3339 formatted datetime string.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
- private
Endpoint stringIp - The IP address in the customer's VCN for the EKMS private endpoint. This is taken from subnet
- state string
- The current state of the EKMS private endpoint resource.
- time
Created string - The time the EKMS private endpoint was created. An RFC3339 formatted datetime string.
- time
Updated string - The time the EKMS private endpoint was updated. An RFC3339 formatted datetime string.
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
- private_
endpoint_ strip - The IP address in the customer's VCN for the EKMS private endpoint. This is taken from subnet
- state str
- The current state of the EKMS private endpoint resource.
- time_
created str - The time the EKMS private endpoint was created. An RFC3339 formatted datetime string.
- time_
updated str - The time the EKMS private endpoint was updated. An RFC3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
- private
Endpoint StringIp - The IP address in the customer's VCN for the EKMS private endpoint. This is taken from subnet
- state String
- The current state of the EKMS private endpoint resource.
- time
Created String - The time the EKMS private endpoint was created. An RFC3339 formatted datetime string.
- time
Updated String - The time the EKMS private endpoint was updated. An RFC3339 formatted datetime string.
Look up Existing EkmsPrivateEndpoint Resource
Get an existing EkmsPrivateEndpoint 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?: EkmsPrivateEndpointState, opts?: CustomResourceOptions): EkmsPrivateEndpoint
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
ca_bundle: Optional[str] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
display_name: Optional[str] = None,
external_key_manager_ip: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
lifecycle_details: Optional[str] = None,
port: Optional[int] = None,
private_endpoint_ip: Optional[str] = None,
state: Optional[str] = None,
subnet_id: Optional[str] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> EkmsPrivateEndpoint
func GetEkmsPrivateEndpoint(ctx *Context, name string, id IDInput, state *EkmsPrivateEndpointState, opts ...ResourceOption) (*EkmsPrivateEndpoint, error)
public static EkmsPrivateEndpoint Get(string name, Input<string> id, EkmsPrivateEndpointState? state, CustomResourceOptions? opts = null)
public static EkmsPrivateEndpoint get(String name, Output<String> id, EkmsPrivateEndpointState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Ca
Bundle string - CABundle to validate TLS certificate of the external key manager system in PEM format
- Compartment
Id string - Compartment identifier.
- Dictionary<string, object>
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - (Updatable) Display name of the EKMS private endpoint resource being created.
- External
Key stringManager Ip - External private IP to connect to from this EKMS private endpoint
- Dictionary<string, object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
- Port int
- The port of the external key manager system
- Private
Endpoint stringIp - The IP address in the customer's VCN for the EKMS private endpoint. This is taken from subnet
- State string
- The current state of the EKMS private endpoint resource.
- Subnet
Id string The OCID of subnet in which the EKMS private endpoint is to be created
** 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
- Time
Created string - The time the EKMS private endpoint was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time the EKMS private endpoint was updated. An RFC3339 formatted datetime string.
- Ca
Bundle string - CABundle to validate TLS certificate of the external key manager system in PEM format
- Compartment
Id string - Compartment identifier.
- map[string]interface{}
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - (Updatable) Display name of the EKMS private endpoint resource being created.
- External
Key stringManager Ip - External private IP to connect to from this EKMS private endpoint
- map[string]interface{}
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
- Port int
- The port of the external key manager system
- Private
Endpoint stringIp - The IP address in the customer's VCN for the EKMS private endpoint. This is taken from subnet
- State string
- The current state of the EKMS private endpoint resource.
- Subnet
Id string The OCID of subnet in which the EKMS private endpoint is to be created
** 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
- Time
Created string - The time the EKMS private endpoint was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time the EKMS private endpoint was updated. An RFC3339 formatted datetime string.
- ca
Bundle String - CABundle to validate TLS certificate of the external key manager system in PEM format
- compartment
Id String - Compartment identifier.
- Map<String,Object>
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - (Updatable) Display name of the EKMS private endpoint resource being created.
- external
Key StringManager Ip - External private IP to connect to from this EKMS private endpoint
- Map<String,Object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
- port Integer
- The port of the external key manager system
- private
Endpoint StringIp - The IP address in the customer's VCN for the EKMS private endpoint. This is taken from subnet
- state String
- The current state of the EKMS private endpoint resource.
- subnet
Id String The OCID of subnet in which the EKMS private endpoint is to be created
** 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
- time
Created String - The time the EKMS private endpoint was created. An RFC3339 formatted datetime string.
- time
Updated String - The time the EKMS private endpoint was updated. An RFC3339 formatted datetime string.
- ca
Bundle string - CABundle to validate TLS certificate of the external key manager system in PEM format
- compartment
Id string - Compartment identifier.
- {[key: string]: any}
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- display
Name string - (Updatable) Display name of the EKMS private endpoint resource being created.
- external
Key stringManager Ip - External private IP to connect to from this EKMS private endpoint
- {[key: string]: any}
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
- port number
- The port of the external key manager system
- private
Endpoint stringIp - The IP address in the customer's VCN for the EKMS private endpoint. This is taken from subnet
- state string
- The current state of the EKMS private endpoint resource.
- subnet
Id string The OCID of subnet in which the EKMS private endpoint is to be created
** 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
- time
Created string - The time the EKMS private endpoint was created. An RFC3339 formatted datetime string.
- time
Updated string - The time the EKMS private endpoint was updated. An RFC3339 formatted datetime string.
- ca_
bundle str - CABundle to validate TLS certificate of the external key manager system in PEM format
- compartment_
id str - Compartment identifier.
- Mapping[str, Any]
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- display_
name str - (Updatable) Display name of the EKMS private endpoint resource being created.
- external_
key_ strmanager_ ip - External private IP to connect to from this EKMS private endpoint
- Mapping[str, Any]
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
- port int
- The port of the external key manager system
- private_
endpoint_ strip - The IP address in the customer's VCN for the EKMS private endpoint. This is taken from subnet
- state str
- The current state of the EKMS private endpoint resource.
- subnet_
id str The OCID of subnet in which the EKMS private endpoint is to be created
** 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
- time_
created str - The time the EKMS private endpoint was created. An RFC3339 formatted datetime string.
- time_
updated str - The time the EKMS private endpoint was updated. An RFC3339 formatted datetime string.
- ca
Bundle String - CABundle to validate TLS certificate of the external key manager system in PEM format
- compartment
Id String - Compartment identifier.
- Map<Any>
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - (Updatable) Display name of the EKMS private endpoint resource being created.
- external
Key StringManager Ip - External private IP to connect to from this EKMS private endpoint
- Map<Any>
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
- port Number
- The port of the external key manager system
- private
Endpoint StringIp - The IP address in the customer's VCN for the EKMS private endpoint. This is taken from subnet
- state String
- The current state of the EKMS private endpoint resource.
- subnet
Id String The OCID of subnet in which the EKMS private endpoint is to be created
** 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
- time
Created String - The time the EKMS private endpoint was created. An RFC3339 formatted datetime string.
- time
Updated String - The time the EKMS private endpoint was updated. An RFC3339 formatted datetime string.
Import
EkmsPrivateEndpoints can be imported using the id
, e.g.
$ pulumi import oci:Kms/ekmsPrivateEndpoint:EkmsPrivateEndpoint test_ekms_private_endpoint "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
oci
Terraform Provider.