Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/resources/rediscloud_active_active_subscription.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ resource "rediscloud_active_active_subscription" "subscription-resource" {
cloud_provider = "AWS"

creation_plan {
memory_limit_in_gb = 1
dataset_size_in_gb = 1
quantity = 1
modules = ["RedisJSON"]
region {
Expand Down Expand Up @@ -65,7 +65,8 @@ The following arguments are supported:

The `creation_plan` block supports:

* `memory_limit_in_gb` - (Required) Maximum memory usage that will be used for your largest planned database, including replication and other overhead
* `memory_limit_in_gb` - (Optional - **Required if `dataset_size_in_gb` is unset**) Maximum memory usage for this specific database, including replication and other overhead **Deprecated in favor of `dataset_size_in_gb` - not possible to import databases with this attribute set**
* `dataset_size_in_gb` - (Optional - **Required if `memory_limit_in_gb` is unset**) The maximum amount of data in the dataset for this specific database is in GB
* `quantity` - (Required) The planned number of databases in the subscription.
* `modules` - (Optional) A list of modules to be enabled on all deployments of this database. Either: `RedisJSON` or `RediSearch`.
* `region` - (Required) Deployment region block, documented below
Expand Down
Loading