Skip to content

Commit 9ba6672

Browse files
committed
docs(README): auto update all sections
1 parent 74a6f16 commit 9ba6672

File tree

1 file changed

+26
-7
lines changed

1 file changed

+26
-7
lines changed

README.md

Lines changed: 26 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
[<img src="https://res.cloudinary.com/enter-at/image/upload/v1576145406/static/logo-svg.svg" alt="enter-at" width="100">][website]
1414

15-
# terraform-module-template [![Build Status](https://github.com/enter-at/terraform-module-template/workflows/Terraform%20Lint/badge.svg)](https://github.com/enter-at/terraform-module-template/actions) [![Latest Release](https://img.shields.io/github/release/enter-at/terraform-module-template.svg)](https://github.com/enter-at/terraform-module-template/releases/latest) [![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
15+
# terraform-aws-lambda-layer [![Build Status](https://github.com/enter-at/terraform-aws-lambda-layer/workflows/Terraform%20Lint/badge.svg)](https://github.com/enter-at/terraform-aws-lambda-layer/actions) [![Latest Release](https://img.shields.io/github/release/enter-at/terraform-aws-lambda-layer.svg)](https://github.com/enter-at/terraform-aws-lambda-layer/releases/latest) [![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
1616

1717

1818
Terraform module designed to facilitate the creation of AWS Lambda layers.
@@ -31,14 +31,33 @@ It's 100% Open Source and licensed under the [APACHE2](LICENSE).
3131

3232

3333
**IMPORTANT:** The `master` branch is used in `source` just as an example. In your code, do not pin to `master` because there may be breaking changes between releases.
34-
Instead pin to the release tag (e.g. `?ref=tags/x.y.z`) of one of our [latest releases](https://github.com/enter-at/terraform-module-template/releases).
34+
Instead pin to the release tag (e.g. `?ref=tags/x.y.z`) of one of our [latest releases](https://github.com/enter-at/terraform-aws-lambda-layer/releases).
3535

3636

3737
### Simple Example
3838

3939
```hcl
40-
module "module" {
41-
source = "git::https://github.com/enter-at/terraform-module-template.git?ref=master"
40+
module "layer" {
41+
source = "git::https://github.com/enter-at/terraform-aws-lambda-layer.git?ref=master"
42+
layer_name = "dependencies"
43+
package_file = "../Pipfile"
44+
}
45+
```
46+
47+
### Advanced Example
48+
49+
```hcl
50+
module "layer" {
51+
source = "git::https://github.com/enter-at/terraform-aws-lambda-layer.git?ref=master"
52+
layer_name = "dependencies"
53+
source_dir = "../src/lib"
54+
source_type = "python"
55+
56+
rsync_pattern = [
57+
"--exclude=**tests**"
58+
"--exclude="**__pycache__**"
59+
"--include=*.py"
60+
]
4261
}
4362
```
4463

@@ -75,7 +94,7 @@ module "module" {
7594
## Share the Love
7695

7796
Like this project?
78-
Please give it a ★ on [our GitHub](https://github.com/enter-at/terraform-module-template)!
97+
Please give it a ★ on [our GitHub](https://github.com/enter-at/terraform-aws-lambda-layer)!
7998

8099

81100
## Related Projects
@@ -90,13 +109,13 @@ Check out these related projects.
90109

91110
**Got a question?**
92111

93-
File a GitHub [issue](https://github.com/enter-at/terraform-module-template/issues).
112+
File a GitHub [issue](https://github.com/enter-at/terraform-aws-lambda-layer/issues).
94113

95114
## Contributing
96115

97116
### Bug Reports & Feature Requests
98117

99-
Please use the [issue tracker](https://github.com/enter-at/terraform-module-template/issues) to report any bugs or file feature requests.
118+
Please use the [issue tracker](https://github.com/enter-at/terraform-aws-lambda-layer/issues) to report any bugs or file feature requests.
100119

101120
### Developing
102121

0 commit comments

Comments
 (0)