Resource: aws_neptune_parameter_group

Manages a Neptune Parameter Group

Example Usage

resource "aws_neptune_parameter_group" "example" {
  family = "neptune1"
  name   = "example"

  parameter {
    name  = "neptune_query_timeout"
    value = "25"
  }
}

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

import {
  to = aws_neptune_parameter_group.some_pg
  id = "some-pg"
}

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

% terraform import aws_neptune_parameter_group.some_pg some-pg