Resource: aws_neptune_cluster_parameter_group

Manages a Neptune Cluster Parameter Group

Example Usage

resource "aws_neptune_cluster_parameter_group" "example" {
  family      = "neptune1"
  name        = "example"
  description = "neptune cluster parameter group"

  parameter {
    name  = "neptune_enable_audit_log"
    value = 1
  }
}

Argument Reference

This resource supports the following arguments:

Parameter blocks support the following:

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 Neptune Cluster Parameter Groups using the name. For example:

import {
  to = aws_neptune_cluster_parameter_group.cluster_pg
  id = "production-pg-1"
}

Using terraform import, import Neptune Cluster Parameter Groups using the name. For example:

% terraform import aws_neptune_cluster_parameter_group.cluster_pg production-pg-1