Skip to content

Commit 8343438

Browse files
committed
Initial commit of docs
0 parents  commit 8343438

File tree

4 files changed

+58
-0
lines changed

4 files changed

+58
-0
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
*.DS_Store
2+
errored.tfstate
3+
.terraform
4+
crash.log
5+
terraform.tfstate
6+
*.tfstate*
7+
terraform.tfvars

LICENSE

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Licensed under the Apache License, Version 2.0 (the "License");
2+
you may not use this file except in compliance with the License.
3+
You may obtain a copy of the License at
4+
5+
http://www.apache.org/licenses/LICENSE-2.0
6+
7+
Unless required by applicable law or agreed to in writing, software
8+
distributed under the License is distributed on an "AS IS" BASIS,
9+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10+
See the License for the specific language governing permissions and
11+
limitations under the License.

README.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# terraform-aws-elasticache-redis
2+
3+
A Terraform module to create an AWS Redis ElastiCache cluster
4+
5+
## Resources created
6+
7+
8+
## Terraform versions
9+
10+
Terraform 0.12. Pin module version to `~> v1.0`. Submit pull-requests to `master` branch.
11+
12+
## Usage
13+
14+
```hcl
15+
module "redis" {
16+
source = "umotif-public/"
17+
version = "~> 1.0"
18+
19+
20+
tags = {
21+
Project = "Test"
22+
}
23+
}
24+
```
25+
26+
## Assumptions
27+
28+
Module is to be used with Terraform > 0.12.
29+
30+
## Examples
31+
32+
* [Elasicache Redis](https://github.com/umotif-public/terraform-aws-elasticache-redis/tree/master/examples/core)
33+
34+
## Authors
35+
36+
Module managed by [Marcin Cuber](https://github.com/marcincuber) [linkedin](https://www.linkedin.com/in/marcincuber/).
37+
38+
## License
39+
40+
See LICENSE for full details.

examples/core/main.tf

Whitespace-only changes.

0 commit comments

Comments
 (0)