terraform/website/source/docs
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
..
backends Remove more references to Atlas 2017-04-07 11:56:19 -04:00
commands Docs: `dir` flag in `get` cmd -> root module def. in `modules/index.html` (#13940) 2017-04-27 11:27:16 +01:00
configuration Fixes order of interpolation functions in docs (#14241) 2017-05-05 17:24:03 +03:00
enterprise website: clarify 👓 env variable hierarchy 2017-05-04 09:51:00 -07:00
import Merge pull request #13824 from JDiPierro/import_google_dns_managed_zone 2017-05-03 15:54:43 -07:00
internals Massively add HCL source tag in docs Markdown files 2017-04-17 13:17:54 +03:00
modules Docs: `dir` flag in `get` cmd -> root module def. in `modules/index.html` (#13940) 2017-04-27 11:27:16 +01:00
plugins Add HCL syntax highlighting for everything but providers 2017-04-06 14:08:39 -04:00
providers Feature request: Support for ElastiCache Redis cluster mode #9419 2017-05-09 20:37:28 +03:00
provisioners Add HCL syntax highlighting for everything but providers 2017-04-06 14:08:39 -04:00
state correct spelling mistakes (#13979) 2017-04-27 02:10:04 +12:00
index.html.markdown