Skip to content

Commit

Permalink
Merge pull request hashicorp#36382 from stefanfreitag/d-aws_elasticac…
Browse files Browse the repository at this point in the history
…he_serverless_cache-fix-example

docs: add details on restrictions for maximum ecpus and data storage
  • Loading branch information
ewbankkit authored Mar 14, 2024
2 parents 5c92dc8 + 3194116 commit 31891a2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions website/docs/r/elasticache_serverless_cache.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ resource "aws_elasticache_serverless_cache" "example" {
unit = "GB"
}
ecpu_per_second {
maximum = 5
maximum = 5000
}
}
description = "Test Server"
Expand All @@ -47,7 +47,7 @@ resource "aws_elasticache_serverless_cache" "example" {
unit = "GB"
}
ecpu_per_second {
maximum = 5
maximum = 5000
}
}
daily_snapshot_time = "09:00"
Expand Down Expand Up @@ -89,12 +89,12 @@ The following arguments are optional:

### DataStorage Configuration

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

### ECPUPerSecond Configuration

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

## Attribute Reference

Expand Down

0 comments on commit 31891a2

Please sign in to comment.