Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

r/elasticache_serverless: update docs #35164

Merged
merged 1 commit into from
Jan 5, 2024
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
14 changes: 7 additions & 7 deletions website/docs/r/elasticache_serverless_cache.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ description: |-

# Resource: aws_elasticache_serverless_cache

Provides an ElastiCache Serverlesss Cache resource which manages memcache or redis.
Provides an ElastiCache Serverless Cache resource which manages memcached or redis.

## Example Usage

### Memcached Serverless

```terraform
resource "aws_elasticache_serverless_cache" "example" {
engine = "memcached"
serverless_cache_name = "example"
engine = "memcached"
name = "example"
cache_usage_limits {
data_storage {
maximum = 10
Expand All @@ -39,8 +39,8 @@ resource "aws_elasticache_serverless_cache" "example" {

```terraform
resource "aws_elasticache_serverless_cache" "example" {
engine = "redis"
serverless_cache_name = "example"
engine = "redis"
name = "example"
cache_usage_limits {
data_storage {
maximum = 10
Expand Down Expand Up @@ -123,7 +123,7 @@ This resource exports the following attributes in addition to the arguments abov

## Import

In Terraform v1.5.0 and later, use an [`import` block](https://developer.hashicorp.com/terraform/language/import) to import ElastiCache Serverlesss Cache Clusters using the `name`. For example:
In Terraform v1.5.0 and later, use an [`import` block](https://developer.hashicorp.com/terraform/language/import) to import ElastiCache Serverless Cache using the `name`. For example:

```terraform
import {
Expand All @@ -132,7 +132,7 @@ import {
}
```

Using `terraform import`, import ElastiCache Serverless Clusters using the `sserverless_cache_name`. For example:
Using `terraform import`, import ElastiCache Serverless Cache using the `name`. For example:

```console
% terraform import aws_elasticache_serverless_cache.my_cluster my_cluster
Expand Down
Loading