oci_core_cpe

This resource provides the Cpe resource in Oracle Cloud Infrastructure Core service.

Creates a new virtual customer-premises equipment (CPE) object in the specified compartment. For more information, see Site-to-Site VPN Overview.

For the purposes of access control, you must provide the OCID of the compartment where you want the CPE to reside. Notice that the CPE doesn’t have to be in the same compartment as the IPSec connection or other Networking Service components. If you’re not sure which compartment to use, put the CPE in the same compartment as the DRG. For more information about compartments and access control, see Overview of the IAM Service. For information about OCIDs, see Resource Identifiers.

You must provide the public IP address of your on-premises router. See CPE Configuration.

You may optionally specify a display name for the CPE, otherwise a default is provided. It does not have to be unique, and you can change it. Avoid entering confidential information.

Example Usage

resource "oci_core_cpe" "test_cpe" {
	#Required
	compartment_id = var.compartment_id
	ip_address = var.cpe_ip_address

	#Optional
	cpe_device_shape_id = data.oci_core_cpe_device_shapes.test_cpe_device_shapes.cpe_device_shapes.0.cpe_device_shape_id
	defined_tags = {"Operations.CostCenter"= "42"}
	display_name = var.cpe_display_name
	freeform_tags = {"Department"= "Finance"}
	is_private = var.cpe_is_private
}

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 Cpe * update - (Defaults to 20 minutes), when updating the Cpe * delete - (Defaults to 20 minutes), when destroying the Cpe

Import

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

$ terraform import oci_core_cpe.test_cpe "id"