FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

aws_elasticache_parameter_group

Provides an ElastiCache parameter group resource.

Example Usage

resource "aws_elasticache_parameter_group" "default" {
    name = "cache-params"
    family = "redis2.8"

    parameter {
        name = "activerehashing"
        value = "yes"
    }

    parameter {
        name = "min-slaves-to-write"
        value = "2"
    }
}

Argument Reference

The following arguments are supported:

Parameter blocks support the following:

Attributes Reference

The following attributes are exported:

Import

ElastiCache Parameter Groups can be imported using the name, e.g.

$ terraform import aws_elasticache_parameter_group.default redis-params

See the source of this document at Terraform.io