confluent_network_link_endpoint Resource

General Availability

confluent_network_link_endpoint provides a Network Link Endpoint resource that enables creating, editing, and deleting Network Link Endpoints on Confluent Cloud.

Example Usage

resource "confluent_network_link_endpoint" "nle" {
  display_name = "nle1"
  description  = "TEST-NLE1"
  environment {
    id = "env-xyz456"
  }
  network {
    id = "n-abc123"
  }
  network_link_service {
    id = "nls-g3e1ox"
  }
}

output "network_link_endpoint" {
  value = confluent_network_link_endpoint.nle
}

Argument Reference

The following arguments are supported:

Attributes Reference

In addition to the preceding arguments, the following attributes are exported:

Import

You can import a Network Link Endpoint by using Environment ID and Network Link Endpoint ID, in the format <Environment ID>/<Network Link Endpoint ID>. The following example shows how to import a Network Link Endpoint:

$ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>"
$ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"
$ terraform import confluent_network_link_endpoint.my_nle env-abc123/nle-abc123

Getting Started

The following end-to-end examples might help to get started with confluent_network_link_endpoint resource: