Skip to content

Commit

Permalink
fix: Correct output attribute mis-spelling (#18)
Browse files Browse the repository at this point in the history
Co-authored-by: Bryant Biggs <[email protected]>
  • Loading branch information
syedimranhassan and bryantbiggs authored Oct 1, 2024
1 parent fc7dbf6 commit a4940aa
Show file tree
Hide file tree
Showing 14 changed files with 20 additions and 20 deletions.
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

0 comments on commit a4940aa

Please sign in to comment.