Resource: aws_dax_parameter_group

Provides a DAX Parameter Group resource.

Example Usage

resource "aws_dax_parameter_group" "example" {
  name = "example"

  parameters {
    name  = "query-ttl-millis"
    value = "100000"
  }

  parameters {
    name  = "record-ttl-millis"
    value = "100000"
  }
}

Argument Reference

This resource supports the following arguments:

parameters

parameters supports 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 DAX Parameter Group using the name. For example:

import {
  to = aws_dax_parameter_group.example
  id = "my_dax_pg"
}

Using terraform import, import DAX Parameter Group using the name. For example:

% terraform import aws_dax_parameter_group.example my_dax_pg