Update Documentation
This commit is contained in:
parent
b236cdf918
commit
a6e17d3b5f
|
@ -17,6 +17,7 @@ resource "aws_elasticache_cluster" "bar" {
|
||||||
cluster_id = "cluster-example"
|
cluster_id = "cluster-example"
|
||||||
engine = "memcached"
|
engine = "memcached"
|
||||||
node_type = "cache.m1.small"
|
node_type = "cache.m1.small"
|
||||||
|
port = 11211
|
||||||
num_cache_nodes = 1
|
num_cache_nodes = 1
|
||||||
parameter_group_name = "default.memcached1.4"
|
parameter_group_name = "default.memcached1.4"
|
||||||
}
|
}
|
||||||
|
@ -47,8 +48,8 @@ value must be between 1 and 20
|
||||||
* `parameter_group_name` – (Required) Name of the parameter group to associate
|
* `parameter_group_name` – (Required) Name of the parameter group to associate
|
||||||
with this cache cluster
|
with this cache cluster
|
||||||
|
|
||||||
* `port` – (Optional) The port number on which each of the cache nodes will
|
* `port` – (Required) The port number on which each of the cache nodes will
|
||||||
accept connections. Default 11211.
|
accept connections. For Memcache the default is 11211, and for Redis the default port is 6379.
|
||||||
|
|
||||||
* `subnet_group_name` – (Optional, VPC only) Name of the subnet group to be used
|
* `subnet_group_name` – (Optional, VPC only) Name of the subnet group to be used
|
||||||
for the cache cluster.
|
for the cache cluster.
|
||||||
|
|
Loading…
Reference in New Issue