Skip to content

Commit 4c0d315

Browse files
committed
chore: update examples
1 parent bd210ca commit 4c0d315

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

examples/redis-global-replication-group/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ No inputs.
7474
| <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 |
7575
| <a name="output_replication_group_id"></a> [replication\_group\_id](#output\_replication\_group\_id) | ID of the ElastiCache Replication Group |
7676
| <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 |
77+
| <a name="output_replication_group_port"></a> [replication\_group\_port](#output\_replication\_group\_port) | Port of the primary node in the replication group, if the cluster mode is disabled |
7778
| <a name="output_replication_group_primary_endpoint_address"></a> [replication\_group\_primary\_endpoint\_address](#output\_replication\_group\_primary\_endpoint\_address) | Address of the endpoint for the primary node in the replication group, if the cluster mode is disabled |
7879
| <a name="output_replication_group_reader_endpoint_address"></a> [replication\_group\_reader\_endpoint\_address](#output\_replication\_group\_reader\_endpoint\_address) | Address of the endpoint for the reader node in the replication group, if the cluster mode is disabled |
7980
| <a name="output_security_group_arn"></a> [security\_group\_arn](#output\_security\_group\_arn) | Amazon Resource Name (ARN) of the security group |

examples/redis-global-replication-group/outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ output "replication_group_primary_endpoint_address" {
6161
value = module.elasticache_primary.replication_group_primary_endpoint_address
6262
}
6363

64+
output "replication_group_port" {
65+
description = "Port of the primary node in the replication group, if the cluster mode is disabled"
66+
value = module.elasticache_primary.replication_group_port
67+
}
68+
6469
output "replication_group_reader_endpoint_address" {
6570
description = "Address of the endpoint for the reader node in the replication group, if the cluster mode is disabled"
6671
value = module.elasticache_primary.replication_group_reader_endpoint_address

examples/redis-replication-group/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ No inputs.
6666
| <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 |
6767
| <a name="output_replication_group_id"></a> [replication\_group\_id](#output\_replication\_group\_id) | ID of the ElastiCache Replication Group |
6868
| <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 |
69+
| <a name="output_replication_group_port"></a> [replication\_group\_port](#output\_replication\_group\_port) | Port of the primary node in the replication group, if the cluster mode is disabled |
6970
| <a name="output_replication_group_primary_endpoint_address"></a> [replication\_group\_primary\_endpoint\_address](#output\_replication\_group\_primary\_endpoint\_address) | Address of the endpoint for the primary node in the replication group, if the cluster mode is disabled |
7071
| <a name="output_replication_group_reader_endpoint_address"></a> [replication\_group\_reader\_endpoint\_address](#output\_replication\_group\_reader\_endpoint\_address) | Address of the endpoint for the reader node in the replication group, if the cluster mode is disabled |
7172
| <a name="output_security_group_arn"></a> [security\_group\_arn](#output\_security\_group\_arn) | Amazon Resource Name (ARN) of the security group |

examples/redis-replication-group/outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ output "replication_group_primary_endpoint_address" {
6161
value = module.elasticache.replication_group_primary_endpoint_address
6262
}
6363

64+
output "replication_group_port" {
65+
description = "Port of the primary node in the replication group, if the cluster mode is disabled"
66+
value = module.elasticache.replication_group_port
67+
}
68+
6469
output "replication_group_reader_endpoint_address" {
6570
description = "Address of the endpoint for the reader node in the replication group, if the cluster mode is disabled"
6671
value = module.elasticache.replication_group_reader_endpoint_address

0 commit comments

Comments
 (0)