Skip to content
This repository was archived by the owner on Dec 29, 2021. It is now read-only.

Commit 4a12e28

Browse files
committed
Add examples
1 parent 1550fc4 commit 4a12e28

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

examples/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Examples
2+
3+
This examples shows how to include this module. To run this example, execute:
4+
```
5+
$ terraform init
6+
$ terraform apply
7+
```

examples/main.tf

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
module "tagging-lambda" {
2+
source = "scholzj/tagging-lambda/aws"
3+
4+
aws_region = "eu-east-1"
5+
name = "my-application"
6+
search_tag_key = "myAppKey"
7+
search_tag_value = "myAppValue"
8+
9+
# Tags
10+
tags = {
11+
Hello = "World"
12+
}
13+
}

0 commit comments

Comments
 (0)