terraform/website/source
Derrick Petzold 55a4ce2838 Feature request: Support for ElastiCache Redis cluster mode #9419
Added support for provisioning a native redis cluster elasticache replication group.
A new TypeSet attribute `cluster_mode` has been added. It requires the following
fields:

  - `replicas_per_node_group` - The number of replica nodes in each node group
  - `num_node_groups` - The number of node groups for this Redis replication group

Notes:

  - `automatic_failover_enabled` must be set to true.
  - `number_cache_clusters` is now a optional and computed field. If `cluster_mode` is set
    its value will be computed as:
 	  ```num_node_groups + num_node_groups * replicas_per_node_group```

Below is a sample config:

  resource "aws_elasticache_replication_group" "bar" {
      replication_group_id = "tf-redis-cluser"
      replication_group_description = "test description"
      node_type = "cache.t2.micro"
      port = 6379
      parameter_group_name = "default.redis3.2.cluster.on"
      automatic_failover_enabled = true
      cluster_mode {
          replicas_per_node_group = 1
          num_node_groups = 2
      }
  }
2017-05-09 20:37:28 +03:00
..
assets Add scaffolding for guides 2017-05-05 17:13:31 -04:00
docs Feature request: Support for ElastiCache Redis cluster mode #9419 2017-05-09 20:37:28 +03:00
guides Add more complete Read example 2017-05-05 17:36:30 -04:00
intro Update intro section 2017-04-06 14:09:07 -04:00
layouts provider/kubernetes: Add support for limit_range (#14285) 2017-05-09 05:07:17 +02:00
upgrade-guides website: backend upgrade guide 2017-02-28 19:19:57 -08:00
404.html.md Update basic scaffolding 2017-04-06 14:08:37 -04:00
android-manifest.json.erb Add favicons 2017-04-06 14:08:40 -04:00
community.html.erb website: suggest Stack Exchange sites as a place to ask questions 2017-05-02 09:33:22 -07:00
downloads.html.erb Update basic scaffolding 2017-04-06 14:08:37 -04:00
favicon.ico Add favicons 2017-04-06 14:08:40 -04:00
index.html.erb Update news section with April 4 webinar video (#14109) 2017-05-01 14:07:48 -05:00
microsoft-tile.xml.builder Add favicons 2017-04-06 14:08:40 -04:00
robots.txt
security.html.erb Add security page (#9717) 2016-11-01 13:56:08 +00:00
sitemap.xml.builder