Skip to content

Commit 31891a2

Browse files
authored
Merge pull request #36382 from stefanfreitag/d-aws_elasticache_serverless_cache-fix-example
docs: add details on restrictions for maximum ecpus and data storage
2 parents 5c92dc8 + 3194116 commit 31891a2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

website/docs/r/elasticache_serverless_cache.html.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ resource "aws_elasticache_serverless_cache" "example" {
2424
unit = "GB"
2525
}
2626
ecpu_per_second {
27-
maximum = 5
27+
maximum = 5000
2828
}
2929
}
3030
description = "Test Server"
@@ -47,7 +47,7 @@ resource "aws_elasticache_serverless_cache" "example" {
4747
unit = "GB"
4848
}
4949
ecpu_per_second {
50-
maximum = 5
50+
maximum = 5000
5151
}
5252
}
5353
daily_snapshot_time = "09:00"
@@ -89,12 +89,12 @@ The following arguments are optional:
8989

9090
### DataStorage Configuration
9191

92-
* `maximum` - The upper limit for data storage the cache is set to use. Set as Integer.
92+
* `maximum` - The upper limit for data storage the cache is set to use. Must be between 1 and 5,000.
9393
* `unit` - The unit that the storage is measured in, in GB.
9494

9595
### ECPUPerSecond Configuration
9696

97-
* `maximum` - The maximum number of ECPUs the cache can consume per second. Set as Integer.
97+
* `maximum` - The maximum number of ECPUs the cache can consume per second. Must be between 1,000 and 15,000,000.
9898

9999
## Attribute Reference
100100

0 commit comments

Comments
 (0)