mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
added elasticache documentation
This commit is contained in:
parent
0aca60789d
commit
22516a8337
1 changed files with 26 additions and 0 deletions
26
terraform/aws/new-elasticache/readme.md
Normal file
26
terraform/aws/new-elasticache/readme.md
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
## AWS Elasticache
|
||||
|
||||
| Provider | Description |
|
||||
|------|---------|
|
||||
| aws | This code will create AWS Elasticache memcached and redis clusters |
|
||||
|
||||
## Resources
|
||||
|
||||
| Name | Type |
|
||||
|------|------|
|
||||
| [aws_elasticache_cluster.demo_elasticache_memcached_cluster](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/elasticache_cluster) | resource |
|
||||
| [aws_elasticache_cluster.demo_elasticache_redis_cluster](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/elasticache_cluster) | resource |
|
||||
|
||||
## Inputs
|
||||
|
||||
| Name | Description | Type | Default | Required |
|
||||
|------|-------------|------|---------|:--------:|
|
||||
| demo_elasticache_memcached_cluster_name | AWS memcached elasticache cluster name | `string` | `""` | yes |
|
||||
| demo_elasticache_redis_cluster_name | AWS redis elasticache cluster name | `string` | `""` | yes |
|
||||
|
||||
## Outputs
|
||||
|
||||
| Name | Description |
|
||||
|------|-------------|
|
||||
| demo_elasticache_memcached_cluster_name | output memcached elasticache cluster name |
|
||||
| demo_elasticache_redis_cluster_name | output redis elasticache cluster name |
|
||||
Loading…
Reference in a new issue