From f8876a299f095d264ef3625b4884c100815ce4aa Mon Sep 17 00:00:00 2001 From: Andres Hernandez Date: Mon, 29 Apr 2019 18:44:52 -0500 Subject: [PATCH 1/2] Update README.md Updated ElastiCache Redis documentation and product page URLs + https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/nodes-select-size.html + https://aws.amazon.com/elasticache/pricing/ --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d898a5e..fdacf59 100644 --- a/README.md +++ b/README.md @@ -146,7 +146,7 @@ resource "aws_elasticache_replication_group" "default" { * `replication_group_id` is a required attribute and is the unique identifier for the cluster * `replication_group_description` is a required attribute and is a user-created description for the group -* `node_type` is the type of node to create in the node group, for information on available node types please see the AWS documentation [Redis Cache Node Sizes](http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheNodes.SelectSize.html#CacheNodes.SelectSize.Redis) +* `node_type` is the type of node to create in the node group, for information on available node types please see the AWS documentation [Redis Cache Node Sizes](https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/nodes-select-size.html) or in the AWS [product page](https://aws.amazon.com/elasticache/pricing/) * `port` is the port number which each node will accept connections, we are using the default Redis port 6379 * `parameter_group_name` this is the name of the parameter group which defines the runtime properties of your nodes and clusters. The details of the default parameter groups can be found in the AWS documentation [ElastiCache Parameter Groups](http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/ParameterGroups.html) . You can also configure a custom parameter group using the `aws_elasticache_parameter_group` stanza [https://www.terraform.io/docs/providers/aws/r/elasticache_parameter_group.html](https://www.terraform.io/docs/providers/aws/r/elasticache_parameter_group.html) * `snapshot_retention_limit` this allows us to configure a daily backup of the cluster state, we are setting the retention period to 5 days for this backup. To disable backups we can either omit this attribute from the config or set the value to 0 From ddb4824d2365a7ddb13b56797f3c7d136a26c7d9 Mon Sep 17 00:00:00 2001 From: Andres Hernandez Date: Mon, 29 Apr 2019 18:54:53 -0500 Subject: [PATCH 2/2] Update README.md Updated ElastiCache for Redis Parameter Groups URL + https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/ParameterGroups.html --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fdacf59..40eb54f 100644 --- a/README.md +++ b/README.md @@ -148,7 +148,7 @@ resource "aws_elasticache_replication_group" "default" { * `replication_group_description` is a required attribute and is a user-created description for the group * `node_type` is the type of node to create in the node group, for information on available node types please see the AWS documentation [Redis Cache Node Sizes](https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/nodes-select-size.html) or in the AWS [product page](https://aws.amazon.com/elasticache/pricing/) * `port` is the port number which each node will accept connections, we are using the default Redis port 6379 -* `parameter_group_name` this is the name of the parameter group which defines the runtime properties of your nodes and clusters. The details of the default parameter groups can be found in the AWS documentation [ElastiCache Parameter Groups](http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/ParameterGroups.html) . You can also configure a custom parameter group using the `aws_elasticache_parameter_group` stanza [https://www.terraform.io/docs/providers/aws/r/elasticache_parameter_group.html](https://www.terraform.io/docs/providers/aws/r/elasticache_parameter_group.html) +* `parameter_group_name` this is the name of the parameter group which defines the runtime properties of your nodes and clusters. The details of the default parameter groups can be found in the AWS documentation [ElastiCache Parameter Groups](https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/ParameterGroups.html). You can also configure a custom parameter group using the `aws_elasticache_parameter_group` stanza [https://www.terraform.io/docs/providers/aws/r/elasticache_parameter_group.html](https://www.terraform.io/docs/providers/aws/r/elasticache_parameter_group.html) * `snapshot_retention_limit` this allows us to configure a daily backup of the cluster state, we are setting the retention period to 5 days for this backup. To disable backups we can either omit this attribute from the config or set the value to 0 * `snapshot_window` the time range in UTC during which ElastiCache will begin taking a daily snapshot of your cluster * `aws_elasticache_subnet_group` this is the name of the subnet group, we are referencing the output from the `aws_elasticache_subnet_group` resource we created earlier