From dedbac5a467e0d7000e02d698b1ce3537c1ba4b6 Mon Sep 17 00:00:00 2001 From: Sam Clinckspoor Date: Mon, 8 Jun 2015 22:51:56 +0200 Subject: [PATCH] added documentation --- .../elasticache_parameter_group.html.markdown | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 website/source/docs/providers/aws/r/elasticache_parameter_group.html.markdown diff --git a/website/source/docs/providers/aws/r/elasticache_parameter_group.html.markdown b/website/source/docs/providers/aws/r/elasticache_parameter_group.html.markdown new file mode 100644 index 000000000..2a78cdcec --- /dev/null +++ b/website/source/docs/providers/aws/r/elasticache_parameter_group.html.markdown @@ -0,0 +1,49 @@ +--- +layout: "aws" +page_title: "AWS: aws_elasticache_parameter_group" +sidebar_current: "docs-aws-resource-elasticache-parameter-group" +--- + +# aws\_elasticache\_parameter\_group + +Provides an ElastiCache parameter group resource. + +## Example Usage + +``` +resource "aws_elasticache_parameter_group" "default" { + name = "cache-params" + family = "redis2.8" + description = "Cache cluster default param group" + + parameter { + name = "activerehashing" + value = "yes" + } + + parameter { + name = "min-slaves-to-write" + value = "2" + } +} +``` + +## Argument Reference + +The following arguments are supported: + +* `name` - (Required) The name of the ElastiCache parameter group. +* `family` - (Required) The family of the ElastiCache parameter group. +* `description` - (Required) The description of the ElastiCache parameter group. +* `parameter` - (Optional) A list of ElastiCache parameters to apply. + +Parameter blocks support the following: + +* `name` - (Required) The name of the ElastiCache parameter. +* `value` - (Required) The value of the ElastiCache parameter. + +## Attributes Reference + +The following attributes are exported: + +* `id` - The ElastiCache parameter group name.