Resource: aws_neptune_cluster_endpoint

Provides an Neptune Cluster Endpoint Resource.

Example Usage

resource "aws_neptune_cluster_endpoint" "example" {
  cluster_identifier          = aws_neptune_cluster.test.cluster_identifier
  cluster_endpoint_identifier = "example"
  endpoint_type               = "READER"
}

Argument Reference

This resource supports the following arguments:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

In Terraform v1.5.0 and later, use an import block to import aws_neptune_cluster_endpoint using the cluster-identifier:endpoint-identfier. For example:

import {
  to = aws_neptune_cluster_endpoint.example
  id = "my-cluster:my-endpoint"
}

Using terraform import, import aws_neptune_cluster_endpoint using the cluster-identifier:endpoint-identfier. For example:

% terraform import aws_neptune_cluster_endpoint.example my-cluster:my-endpoint