You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -130,6 +130,8 @@ Available targets:
130
130
| port | Redis port | number |`6379`| no |
131
131
| replication_group_id | Replication group ID with the following constraints: A name must contain from 1 to 20 alphanumeric characters or hyphens. The first character must be a letter. A name cannot end with a hyphen or contain two consecutive hyphens. | string | `` | no |
132
132
| security_groups | Security Group IDs | list(string) |`<list>`| no |
133
+
| snapshot_retention_limit | The number of days for which ElastiCache will retain automatic cache cluster snapshots before deleting them. | number |`0`| no |
134
+
| snapshot_window | The daily time range (in UTC) during which ElastiCache will begin taking a daily snapshot of your cache cluster. | string |`06:30-07:30`| no |
Copy file name to clipboardExpand all lines: docs/terraform.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,8 @@
27
27
| port | Redis port | number |`6379`| no |
28
28
| replication_group_id | Replication group ID with the following constraints: A name must contain from 1 to 20 alphanumeric characters or hyphens. The first character must be a letter. A name cannot end with a hyphen or contain two consecutive hyphens. | string | `` | no |
29
29
| security_groups | Security Group IDs | list(string) |`<list>`| no |
30
+
| snapshot_retention_limit | The number of days for which ElastiCache will retain automatic cache cluster snapshots before deleting them. | number |`0`| no |
31
+
| snapshot_window | The daily time range (in UTC) during which ElastiCache will begin taking a daily snapshot of your cache cluster. | string |`06:30-07:30`| no |
description="Replication group ID with the following constraints: \nA name must contain from 1 to 20 alphanumeric characters or hyphens. \n The first character must be a letter. \n A name cannot end with a hyphen or contain two consecutive hyphens."
186
186
default=""
187
187
}
188
+
189
+
variable"snapshot_window" {
190
+
type=string
191
+
description="The daily time range (in UTC) during which ElastiCache will begin taking a daily snapshot of your cache cluster."
192
+
default="06:30-07:30"
193
+
}
194
+
195
+
variable"snapshot_retention_limit" {
196
+
type=number
197
+
description="The number of days for which ElastiCache will retain automatic cache cluster snapshots before deleting them."
0 commit comments