oci_core_cross_connect_group

This resource provides the Cross Connect Group resource in Oracle Cloud Infrastructure Core service.

Creates a new cross-connect group to use with Oracle Cloud Infrastructure FastConnect. For more information, see FastConnect Overview.

For the purposes of access control, you must provide the OCID of the compartment where you want the cross-connect group to reside. If you're not sure which compartment to use, put the cross-connect group in the same compartment with your VCN. For more information about compartments and access control, see Overview of the IAM Service. For information about OCIDs, see Resource Identifiers.

You may optionally specify a display name for the cross-connect group. It does not have to be unique, and you can change it. Avoid entering confidential information.

Example Usage

resource "oci_core_cross_connect_group" "test_cross_connect_group" {
    #Required
    compartment_id = var.compartment_id

    #Optional
    customer_reference_name = var.cross_connect_group_customer_reference_name
    defined_tags = {"Operations.CostCenter"= "42"}
    display_name = var.cross_connect_group_display_name
    freeform_tags = {"Department"= "Finance"}
    macsec_properties {
        #Required
        state = var.cross_connect_group_macsec_properties_state

        #Optional
        encryption_cipher = var.cross_connect_group_macsec_properties_encryption_cipher
        is_unprotected_traffic_allowed = var.cross_connect_group_macsec_properties_is_unprotected_traffic_allowed
        primary_key {
            #Required
            connectivity_association_key_secret_id = oci_vault_secret.test_secret.id
            connectivity_association_name_secret_id = oci_vault_secret.test_secret.id
        }
    }
}

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

Import

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

$ terraform import oci_core_cross_connect_group.test_cross_connect_group "id"