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
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -89,6 +89,7 @@ Module managed by [Marcin Cuber](https://github.com/marcincuber) [linkedin](http
89
89
| auth\_token | The password used to access a password protected server. Can be specified only if `transit_encryption_enabled = true`. |`string`|`""`| no |
90
90
| auto\_minor\_version\_upgrade | n/a |`string`|`true`| no |
91
91
| automatic\_failover\_enabled | Specifies whether a read-only replica will be automatically promoted to read/write primary if the existing primary fails. |`bool`|`true`| no |
92
+
| availability\_zones | A list of EC2 availability zones in which the replication group's cache clusters will be created. The order of the availability zones in the list is not important. |`list(string)`|`null`| no |
92
93
| cluster\_mode\_enabled | Enable creation of a native redis cluster. |`bool`|`false`| no |
93
94
| description | The description of the all resources. |`string`|`"Managed by Terraform"`| no |
94
95
| engine\_version | The version number of the cache engine to be used for the cache clusters in this replication group. |`string`|`"5.0.6"`| no |
Copy file name to clipboardExpand all lines: variables.tf
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -162,3 +162,9 @@ variable "num_node_groups" {
162
162
default=0
163
163
description="Required when `cluster_mode_enabled` is set to true. Specify the number of node groups (shards) for this Redis replication group. Changing this number will trigger an online resizing operation before other settings modifications."
164
164
}
165
+
166
+
variable"availability_zones" {
167
+
type=list(string)
168
+
description="A list of EC2 availability zones in which the replication group's cache clusters will be created. The order of the availability zones in the list is not important."
0 commit comments