Skip to content

Commit 94d3f62

Browse files
committed
updating readme
1 parent fd4c5a4 commit 94d3f62

File tree

2 files changed

+57
-2
lines changed

2 files changed

+57
-2
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Security Scans
2+
3+
on:
4+
push:
5+
branches:
6+
- develop
7+
- main
8+
paths-ignore:
9+
- 'README.md'
10+
- 'LICENSE'
11+
- '.gitignore'
12+
- '**.md'
13+
pull_request:
14+
paths-ignore:
15+
- 'README.md'
16+
- 'LICENSE'
17+
- '.gitignore'
18+
- '**.md'
19+
20+
jobs:
21+
scans:
22+
name: Security Scans
23+
runs-on: ubuntu-latest
24+
steps:
25+
- uses: actions/checkout@v2
26+
27+
- name: Checkov Scan
28+
id: checkov
29+
uses: bridgecrewio/checkov-action@master
30+
with:
31+
directory: "."
32+
framework: terraform # optional: run only on a specific infrastructure {cloudformation,terraform,kubernetes,all}
33+
output_format: json # optional: the output format, one of: cli, json, junitxml, github_failed_only

README.md

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,14 @@
1515
<img src="https://img.shields.io/twitter/follow/varuntomar2019?style=social&logo=twitter"></a>
1616
</p>
1717

18-
# Terraform module for AWS [ElastiCache]
18+
# Terraform module for [AWS Elasticache](https://registry.terraform.io/modules/tomarv2/elasticache/aws/latest)
19+
20+
####
21+
22+
> :arrow_right: Terraform module for [Azure Cache for Redis](https://registry.terraform.io/modules/tomarv2/redis-cache/azure/latest)
23+
24+
> :arrow_right: Terraform module for [Google Memorystore](https://registry.terraform.io/modules/tomarv2/memorystore/google/latest)
25+
1926

2027
## Versions
2128

@@ -81,7 +88,22 @@ tf -cloud aws destroy
8188
>
8289
> For more information refer to [Terraform documentation](https://www.terraform.io/docs/language/values/variables.html)
8390
84-
##### ElastiCache with Security Group
91+
##### Elasticache
92+
```
93+
module "redis" {
94+
source = "../"
95+
96+
security_group_ids = [<existing security group name>]
97+
account_id = "123456789012"
98+
email = "demo@demo.com"
99+
# ----------------------------------------------
100+
# Note: Do not change teamid and prjid once set.
101+
teamid = var.teamid
102+
prjid = var.prjid
103+
}
104+
```
105+
106+
##### Elasticache with Security Group
85107
```
86108
module "redis" {
87109
source = "../"

0 commit comments

Comments
 (0)