Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ No modules.
| <a name="output_parameter_group_arn"></a> [parameter\_group\_arn](#output\_parameter\_group\_arn) | The AWS ARN associated with the parameter group |
| <a name="output_parameter_group_id"></a> [parameter\_group\_id](#output\_parameter\_group\_id) | The ElastiCache parameter group name |
| <a name="output_replication_group_arn"></a> [replication\_group\_arn](#output\_replication\_group\_arn) | ARN of the created ElastiCache Replication Group |
| <a name="output_replication_group_coniguration_endpoint_address"></a> [replication\_group\_coniguration\_endpoint\_address](#output\_replication\_group\_coniguration\_endpoint\_address) | Address of the replication group configuration endpoint when cluster mode is enabled |
| <a name="output_replication_group_configuration_endpoint_address"></a> [replication\_group\_configuration\_endpoint\_address](#output\_replication\_group\_configuration\_endpoint\_address) | Address of the replication group configuration endpoint when cluster mode is enabled |
| <a name="output_replication_group_engine_version_actual"></a> [replication\_group\_engine\_version\_actual](#output\_replication\_group\_engine\_version\_actual) | Because ElastiCache pulls the latest minor or patch for a version, this attribute returns the running version of the cache engine |
| <a name="output_replication_group_id"></a> [replication\_group\_id](#output\_replication\_group\_id) | ID of the ElastiCache Replication Group |
| <a name="output_replication_group_member_clusters"></a> [replication\_group\_member\_clusters](#output\_replication\_group\_member\_clusters) | Identifiers of all the nodes that are part of this replication group |
Expand Down
2 changes: 1 addition & 1 deletion examples/memcached-cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ No inputs.
| <a name="output_parameter_group_arn"></a> [parameter\_group\_arn](#output\_parameter\_group\_arn) | The AWS ARN associated with the parameter group |
| <a name="output_parameter_group_id"></a> [parameter\_group\_id](#output\_parameter\_group\_id) | The ElastiCache parameter group name |
| <a name="output_replication_group_arn"></a> [replication\_group\_arn](#output\_replication\_group\_arn) | ARN of the created ElastiCache Replication Group |
| <a name="output_replication_group_coniguration_endpoint_address"></a> [replication\_group\_coniguration\_endpoint\_address](#output\_replication\_group\_coniguration\_endpoint\_address) | Address of the replication group configuration endpoint when cluster mode is enabled |
| <a name="output_replication_group_configuration_endpoint_address"></a> [replication\_group\_configuration\_endpoint\_address](#output\_replication\_group\_configuration\_endpoint\_address) | Address of the replication group configuration endpoint when cluster mode is enabled |
| <a name="output_replication_group_engine_version_actual"></a> [replication\_group\_engine\_version\_actual](#output\_replication\_group\_engine\_version\_actual) | Because ElastiCache pulls the latest minor or patch for a version, this attribute returns the running version of the cache engine |
| <a name="output_replication_group_id"></a> [replication\_group\_id](#output\_replication\_group\_id) | ID of the ElastiCache Replication Group |
| <a name="output_replication_group_member_clusters"></a> [replication\_group\_member\_clusters](#output\_replication\_group\_member\_clusters) | Identifiers of all the nodes that are part of this replication group |
Expand Down
4 changes: 2 additions & 2 deletions examples/memcached-cluster/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ output "replication_group_engine_version_actual" {
value = module.elasticache.replication_group_engine_version_actual
}

output "replication_group_coniguration_endpoint_address" {
output "replication_group_configuration_endpoint_address" {
description = "Address of the replication group configuration endpoint when cluster mode is enabled"
value = module.elasticache.replication_group_coniguration_endpoint_address
value = module.elasticache.replication_group_configuration_endpoint_address
}

output "replication_group_id" {
Expand Down
2 changes: 1 addition & 1 deletion examples/redis-cluster-mode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ No inputs.
| <a name="output_parameter_group_arn"></a> [parameter\_group\_arn](#output\_parameter\_group\_arn) | The AWS ARN associated with the parameter group |
| <a name="output_parameter_group_id"></a> [parameter\_group\_id](#output\_parameter\_group\_id) | The ElastiCache parameter group name |
| <a name="output_replication_group_arn"></a> [replication\_group\_arn](#output\_replication\_group\_arn) | ARN of the created ElastiCache Replication Group |
| <a name="output_replication_group_coniguration_endpoint_address"></a> [replication\_group\_coniguration\_endpoint\_address](#output\_replication\_group\_coniguration\_endpoint\_address) | Address of the replication group configuration endpoint when cluster mode is enabled |
| <a name="output_replication_group_configuration_endpoint_address"></a> [replication\_group\_configuration\_endpoint\_address](#output\_replication\_group\_configuration\_endpoint\_address) | Address of the replication group configuration endpoint when cluster mode is enabled |
| <a name="output_replication_group_engine_version_actual"></a> [replication\_group\_engine\_version\_actual](#output\_replication\_group\_engine\_version\_actual) | Because ElastiCache pulls the latest minor or patch for a version, this attribute returns the running version of the cache engine |
| <a name="output_replication_group_id"></a> [replication\_group\_id](#output\_replication\_group\_id) | ID of the ElastiCache Replication Group |
| <a name="output_replication_group_member_clusters"></a> [replication\_group\_member\_clusters](#output\_replication\_group\_member\_clusters) | Identifiers of all the nodes that are part of this replication group |
Expand Down
4 changes: 2 additions & 2 deletions examples/redis-cluster-mode/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ output "replication_group_engine_version_actual" {
value = module.elasticache.replication_group_engine_version_actual
}

output "replication_group_coniguration_endpoint_address" {
output "replication_group_configuration_endpoint_address" {
description = "Address of the replication group configuration endpoint when cluster mode is enabled"
value = module.elasticache.replication_group_coniguration_endpoint_address
value = module.elasticache.replication_group_configuration_endpoint_address
}

output "replication_group_id" {
Expand Down
2 changes: 1 addition & 1 deletion examples/redis-cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ No inputs.
| <a name="output_parameter_group_arn"></a> [parameter\_group\_arn](#output\_parameter\_group\_arn) | The AWS ARN associated with the parameter group |
| <a name="output_parameter_group_id"></a> [parameter\_group\_id](#output\_parameter\_group\_id) | The ElastiCache parameter group name |
| <a name="output_replication_group_arn"></a> [replication\_group\_arn](#output\_replication\_group\_arn) | ARN of the created ElastiCache Replication Group |
| <a name="output_replication_group_coniguration_endpoint_address"></a> [replication\_group\_coniguration\_endpoint\_address](#output\_replication\_group\_coniguration\_endpoint\_address) | Address of the replication group configuration endpoint when cluster mode is enabled |
| <a name="output_replication_group_configuration_endpoint_address"></a> [replication\_group\_configuration\_endpoint\_address](#output\_replication\_group\_configuration\_endpoint\_address) | Address of the replication group configuration endpoint when cluster mode is enabled |
| <a name="output_replication_group_engine_version_actual"></a> [replication\_group\_engine\_version\_actual](#output\_replication\_group\_engine\_version\_actual) | Because ElastiCache pulls the latest minor or patch for a version, this attribute returns the running version of the cache engine |
| <a name="output_replication_group_id"></a> [replication\_group\_id](#output\_replication\_group\_id) | ID of the ElastiCache Replication Group |
| <a name="output_replication_group_member_clusters"></a> [replication\_group\_member\_clusters](#output\_replication\_group\_member\_clusters) | Identifiers of all the nodes that are part of this replication group |
Expand Down
4 changes: 2 additions & 2 deletions examples/redis-cluster/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ output "replication_group_engine_version_actual" {
value = module.elasticache.replication_group_engine_version_actual
}

output "replication_group_coniguration_endpoint_address" {
output "replication_group_configuration_endpoint_address" {
description = "Address of the replication group configuration endpoint when cluster mode is enabled"
value = module.elasticache.replication_group_coniguration_endpoint_address
value = module.elasticache.replication_group_configuration_endpoint_address
}

output "replication_group_id" {
Expand Down
2 changes: 1 addition & 1 deletion examples/redis-global-replication-group/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ No inputs.
| <a name="output_parameter_group_arn"></a> [parameter\_group\_arn](#output\_parameter\_group\_arn) | The AWS ARN associated with the parameter group |
| <a name="output_parameter_group_id"></a> [parameter\_group\_id](#output\_parameter\_group\_id) | The ElastiCache parameter group name |
| <a name="output_replication_group_arn"></a> [replication\_group\_arn](#output\_replication\_group\_arn) | ARN of the created ElastiCache Replication Group |
| <a name="output_replication_group_coniguration_endpoint_address"></a> [replication\_group\_coniguration\_endpoint\_address](#output\_replication\_group\_coniguration\_endpoint\_address) | Address of the replication group configuration endpoint when cluster mode is enabled |
| <a name="output_replication_group_configuration_endpoint_address"></a> [replication\_group\_configuration\_endpoint\_address](#output\_replication\_group\_configuration\_endpoint\_address) | Address of the replication group configuration endpoint when cluster mode is enabled |
| <a name="output_replication_group_engine_version_actual"></a> [replication\_group\_engine\_version\_actual](#output\_replication\_group\_engine\_version\_actual) | Because ElastiCache pulls the latest minor or patch for a version, this attribute returns the running version of the cache engine |
| <a name="output_replication_group_id"></a> [replication\_group\_id](#output\_replication\_group\_id) | ID of the ElastiCache Replication Group |
| <a name="output_replication_group_member_clusters"></a> [replication\_group\_member\_clusters](#output\_replication\_group\_member\_clusters) | Identifiers of all the nodes that are part of this replication group |
Expand Down
4 changes: 2 additions & 2 deletions examples/redis-global-replication-group/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ output "replication_group_engine_version_actual" {
value = module.elasticache_primary.replication_group_engine_version_actual
}

output "replication_group_coniguration_endpoint_address" {
output "replication_group_configuration_endpoint_address" {
description = "Address of the replication group configuration endpoint when cluster mode is enabled"
value = module.elasticache_primary.replication_group_coniguration_endpoint_address
value = module.elasticache_primary.replication_group_configuration_endpoint_address
}

output "replication_group_id" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ No inputs.
| <a name="output_parameter_group_arn"></a> [parameter\_group\_arn](#output\_parameter\_group\_arn) | The AWS ARN associated with the parameter group |
| <a name="output_parameter_group_id"></a> [parameter\_group\_id](#output\_parameter\_group\_id) | The ElastiCache parameter group name |
| <a name="output_replication_group_arn"></a> [replication\_group\_arn](#output\_replication\_group\_arn) | ARN of the created ElastiCache Replication Group |
| <a name="output_replication_group_coniguration_endpoint_address"></a> [replication\_group\_coniguration\_endpoint\_address](#output\_replication\_group\_coniguration\_endpoint\_address) | Address of the replication group configuration endpoint when cluster mode is enabled |
| <a name="output_replication_group_configuration_endpoint_address"></a> [replication\_group\_configuration\_endpoint\_address](#output\_replication\_group\_configuration\_endpoint\_address) | Address of the replication group configuration endpoint when cluster mode is enabled |
| <a name="output_replication_group_engine_version_actual"></a> [replication\_group\_engine\_version\_actual](#output\_replication\_group\_engine\_version\_actual) | Because ElastiCache pulls the latest minor or patch for a version, this attribute returns the running version of the cache engine |
| <a name="output_replication_group_id"></a> [replication\_group\_id](#output\_replication\_group\_id) | ID of the ElastiCache Replication Group |
| <a name="output_replication_group_member_clusters"></a> [replication\_group\_member\_clusters](#output\_replication\_group\_member\_clusters) | Identifiers of all the nodes that are part of this replication group |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ output "replication_group_engine_version_actual" {
value = module.replication_group_with_cluster_replica.replication_group_engine_version_actual
}

output "replication_group_coniguration_endpoint_address" {
output "replication_group_configuration_endpoint_address" {
description = "Address of the replication group configuration endpoint when cluster mode is enabled"
value = module.replication_group_with_cluster_replica.replication_group_coniguration_endpoint_address
value = module.replication_group_with_cluster_replica.replication_group_configuration_endpoint_address
}

output "replication_group_id" {
Expand Down
2 changes: 1 addition & 1 deletion examples/redis-replication-group/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ No inputs.
| <a name="output_parameter_group_arn"></a> [parameter\_group\_arn](#output\_parameter\_group\_arn) | The AWS ARN associated with the parameter group |
| <a name="output_parameter_group_id"></a> [parameter\_group\_id](#output\_parameter\_group\_id) | The ElastiCache parameter group name |
| <a name="output_replication_group_arn"></a> [replication\_group\_arn](#output\_replication\_group\_arn) | ARN of the created ElastiCache Replication Group |
| <a name="output_replication_group_coniguration_endpoint_address"></a> [replication\_group\_coniguration\_endpoint\_address](#output\_replication\_group\_coniguration\_endpoint\_address) | Address of the replication group configuration endpoint when cluster mode is enabled |
| <a name="output_replication_group_configuration_endpoint_address"></a> [replication\_group\_configuration\_endpoint\_address](#output\_replication\_group\_configuration\_endpoint\_address) | Address of the replication group configuration endpoint when cluster mode is enabled |
| <a name="output_replication_group_engine_version_actual"></a> [replication\_group\_engine\_version\_actual](#output\_replication\_group\_engine\_version\_actual) | Because ElastiCache pulls the latest minor or patch for a version, this attribute returns the running version of the cache engine |
| <a name="output_replication_group_id"></a> [replication\_group\_id](#output\_replication\_group\_id) | ID of the ElastiCache Replication Group |
| <a name="output_replication_group_member_clusters"></a> [replication\_group\_member\_clusters](#output\_replication\_group\_member\_clusters) | Identifiers of all the nodes that are part of this replication group |
Expand Down
4 changes: 2 additions & 2 deletions examples/redis-replication-group/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ output "replication_group_engine_version_actual" {
value = module.elasticache.replication_group_engine_version_actual
}

output "replication_group_coniguration_endpoint_address" {
output "replication_group_configuration_endpoint_address" {
description = "Address of the replication group configuration endpoint when cluster mode is enabled"
value = module.elasticache.replication_group_coniguration_endpoint_address
value = module.elasticache.replication_group_configuration_endpoint_address
}

output "replication_group_id" {
Expand Down
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ output "replication_group_engine_version_actual" {
value = try(aws_elasticache_replication_group.this[0].engine_version_actual, aws_elasticache_replication_group.global[0].engine_version_actual, null)
}

output "replication_group_coniguration_endpoint_address" {
output "replication_group_configuration_endpoint_address" {
description = "Address of the replication group configuration endpoint when cluster mode is enabled"
value = try(aws_elasticache_replication_group.this[0].configuration_endpoint_address, aws_elasticache_replication_group.global[0].configuration_endpoint_address, null)
}
Expand Down