Private Cross Connect

Creates and manages Private Cross Connections between virtual datacenters.

Manages a Private Cross Connect on IonosCloud.

Example Usage

resource "ionoscloud_private_crossconnect" "example" {
  name = "example"
  description = "example pcc"
}

Argument Reference

The following arguments are supported:

  • name - (Required)[string] The name of the private cross-connection.

  • description - (Optional)[string] A short description for the private cross-connection.

  • peers - (Computed) Lists LAN's joined to this private cross connect

    • lan_id

    • lan_name

    • datacenter_id

    • datacenter_name

    • location

  • connectable_datacenters - (Computed) Lists datacenters that can be joined to this private cross connect

    • id

    • name

    • location

Import

A Private Cross Connect resource can be imported using its resource id, e.g.

terraform import ionoscloud_private_crossconnect.demo {ionoscloud_private_crossconnect_uuid}

This can be helpful when you want to import private cross-connects which you have already created manually or using other means, outside of terraform.

Last updated