Skip to content

Commit a5ebd8f

Browse files
updated readme.md file
1 parent 837102f commit a5ebd8f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ module "redis" {
5050
}
5151
5252
```
53+
Refer [examples](https://github.com/squareops/terraform-aws-elasticache-redis/tree/main/examples/complete) for more details.
54+
55+
## IAM Permissions
56+
The required IAM permissions to create resources from this module can be found [here](https://github.com/squareops/terraform-aws-elasticache-redis/blob/main/IAM.md)
5357

5458
## Important Note
5559
1. By default, the variable `create_random_password` is set to true. Therefore, even if the user provides a password, it will not be read. The `create_random_password` variable should be set to false and the `password` variable should have a non-null value to be read and used.

examples/complete/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ locals {
1717
}
1818

1919
module "redis" {
20-
source = "squareops/elasticache-redis/aws"
20+
source = "../../"
2121
name = local.name
2222
family = local.family
2323
node_type = local.node_type

0 commit comments

Comments
 (0)