Skip to content

Commit

Permalink
Addressed feedbacks: Updated variable description
Browse files Browse the repository at this point in the history
  • Loading branch information
muhammadasgharaliqureshi committed Jan 28, 2025
1 parent 0c7a340 commit ae673a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ Available targets:
| <a name="input_user_group_ids"></a> [user\_group\_ids](#input\_user\_group\_ids) | User Group ID to associate with the replication group | `list(string)` | `null` | no |
| <a name="input_vpc_id"></a> [vpc\_id](#input\_vpc\_id) | VPC ID | `string` | n/a | yes |
| <a name="input_zone_id"></a> [zone\_id](#input\_zone\_id) | Route53 DNS Zone ID as list of string (0 or 1 items). If empty, no custom DNS name will be published.<br/>If the list contains a single Zone ID, a custom DNS name will be pulished in that zone.<br/>Can also be a plain string, but that use is DEPRECATED because of Terraform issues. | `any` | `[]` | no |
| <a name="input_serverless_snapshot_arns_to_restore"></a> [serverless_snapshot_arns_to_restore](#input\_serverless\_snapshot\_arns\_to\_restore) | Optional list of snapshot ARNs to restore for serverless Redis | `list(string)` | `[]` | no |
| <a name="input_serverless_snapshot_arns_to_restore"></a> [serverless_snapshot_arns_to_restore](#input\_serverless\_snapshot\_arns\_to\_restore) | The list of ARN(s) of the snapshot that the new serverless cache will be created from. Available for Redis only. | `list(string)` | `[]` | no |

## Outputs

Expand Down
2 changes: 1 addition & 1 deletion examples/serverless/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ variable "sg_name" {
variable "serverless_snapshot_arns_to_restore" {
type = list(string)
default = []
description = "Optional list of snapshot ARNs to restore for serverless ElastiCache."
description = "The list of ARN(s) of the snapshot that the new serverless cache will be created from. Available for Redis only."
}
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -332,5 +332,5 @@ variable "serverless_cache_usage_limits" {
variable "serverless_snapshot_arns_to_restore" {
type = list(string)
default = []
description = "Optional list of snapshot ARNs to restore for serverless ElastiCache."
description = "The list of ARN(s) of the snapshot that the new serverless cache will be created from. Available for Redis only."
}

0 comments on commit ae673a4

Please sign in to comment.