oci_kms_ekms_private_endpoint

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

resource "oci_kms_ekms_private_endpoint" "test_ekms_private_endpoint" {
	#Required
	ca_bundle = var.ekms_private_endpoint_ca_bundle
	compartment_id = var.compartment_id
	display_name = var.ekms_private_endpoint_display_name
	external_key_manager_ip = var.ekms_private_endpoint_external_key_manager_ip
	subnet_id = oci_core_subnet.test_subnet.id

	#Optional
	defined_tags = {"foo-namespace.bar-key"= "value"}
	freeform_tags = {"bar-key"= "value"}
	port = var.ekms_private_endpoint_port
}

Argument Reference

The following arguments are supported:

** 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

Attributes Reference

The following attributes are exported:

Timeouts

The timeouts block allows you to specify timeouts for certain operations: * create - (Defaults to 20 minutes), when creating the Ekms Private Endpoint * update - (Defaults to 20 minutes), when updating the Ekms Private Endpoint * delete - (Defaults to 20 minutes), when destroying the Ekms Private Endpoint

Import

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

$ terraform import oci_kms_ekms_private_endpoint.test_ekms_private_endpoint "id"