Skip to content

Commit c1d6d34

Browse files
authored
Merge pull request #145 from enter-at/github-actions/auto-readme-1592314004
Automatic Update of README.md
2 parents c8da197 + 7b09c76 commit c1d6d34

File tree

2 files changed

+56
-26
lines changed

2 files changed

+56
-26
lines changed

README.md

Lines changed: 30 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ module "layer" {
5454
source_type = "python"
5555
5656
rsync_pattern = [
57-
"--exclude='**tests**'"
58-
"--exclude="'**__pycache__**'"
59-
"--include=module/{a,b,c}/"
60-
"--include='*.py'"
57+
"--exclude='**tests**'",
58+
"--exclude='**__pycache__**'",
59+
"--include=module/{a,b,c}/",
60+
"--include='*.py'",
6161
"--exclude='module/*'"
6262
]
6363
}
@@ -70,26 +70,41 @@ module "layer" {
7070

7171

7272

73+
## Requirements
74+
75+
| Name | Version |
76+
|------|---------|
77+
| terraform | ~> 0.12.0 |
78+
79+
## Providers
80+
81+
| Name | Version |
82+
|------|---------|
83+
| archive | n/a |
84+
| aws | n/a |
85+
| null | n/a |
86+
| random | n/a |
87+
7388
## Inputs
7489

7590
| Name | Description | Type | Default | Required |
76-
|------|-------------|:----:|:-----:|:-----:|
77-
| compatible_runtimes | (Optional) A list of Runtimes this layer is compatible with. Up to 5 runtimes can be specified. | list(string) | `null` | no |
78-
| description | (Optional) Description of what the Lambda layer does. | string | `null` | no |
79-
| layer_name | (Required) A unique name for the Lambda Layer. | string | - | yes |
80-
| package_file | (Optional) The location of the package manager config file. Can be one of (package.json, requirements.txt, Pipfile) | string | `null` | no |
81-
| rsync_pattern | (Optional) A list of rsync pattern to include or exclude files and directories. | list(string) | `<list>` | no |
82-
| source_dir | (Optional) The location of the Lamvda layer source code. Requires source_type to be defined. | string | `null` | no |
83-
| source_type | (Optional) The location of the Lambda layer source type. Can be one of (nodejs, python) | string | `null` | no |
91+
|------|-------------|------|---------|:--------:|
92+
| compatible\_runtimes | (Optional) A list of Runtimes this layer is compatible with. Up to 5 runtimes can be specified. | `list(string)` | `null` | no |
93+
| description | (Optional) Description of what the Lambda layer does. | `string` | `null` | no |
94+
| layer\_name | (Required) A unique name for the Lambda Layer. | `string` | n/a | yes |
95+
| package\_file | (Optional) The location of the package manager config file. Can be one of (package.json, requirements.txt, Pipfile) | `string` | `null` | no |
96+
| rsync\_pattern | (Optional) A list of rsync pattern to include or exclude files and directories. | `list(string)` | <pre>[<br> "--include=*"<br>]</pre> | no |
97+
| source\_dir | (Optional) The location of the Lamvda layer source code. Requires source\_type to be defined. | `string` | `null` | no |
98+
| source\_type | (Optional) The location of the Lambda layer source type. Can be one of (nodejs, python) | `string` | `null` | no |
8499

85100
## Outputs
86101

87102
| Name | Description |
88103
|------|-------------|
89104
| arn | The Amazon Resource Name (ARN) of the Lambda layer with version. |
90-
| created_date | The date the layer was created. |
91-
| layer_arn | The Amazon Resource Name (ARN) of the Lambda layer without version. |
92-
| source_code_size | The size in bytes of the layer .zip file. |
105+
| created\_date | The date the layer was created. |
106+
| layer\_arn | The Amazon Resource Name (ARN) of the Lambda layer without version. |
107+
| source\_code\_size | The size in bytes of the layer .zip file. |
93108
| version | The Lamba layer version. |
94109

95110

docs/terraform.md

Lines changed: 26 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,37 @@
1+
## Requirements
2+
3+
| Name | Version |
4+
|------|---------|
5+
| terraform | ~> 0.12.0 |
6+
7+
## Providers
8+
9+
| Name | Version |
10+
|------|---------|
11+
| archive | n/a |
12+
| aws | n/a |
13+
| null | n/a |
14+
| random | n/a |
15+
116
## Inputs
217

318
| Name | Description | Type | Default | Required |
4-
|------|-------------|:----:|:-----:|:-----:|
5-
| compatible_runtimes | (Optional) A list of Runtimes this layer is compatible with. Up to 5 runtimes can be specified. | list(string) | `null` | no |
6-
| description | (Optional) Description of what the Lambda layer does. | string | `null` | no |
7-
| layer_name | (Required) A unique name for the Lambda Layer. | string | - | yes |
8-
| package_file | (Optional) The location of the package manager config file. Can be one of (package.json, requirements.txt, Pipfile) | string | `null` | no |
9-
| rsync_pattern | (Optional) A list of rsync pattern to include or exclude files and directories. | list(string) | `<list>` | no |
10-
| source_dir | (Optional) The location of the Lamvda layer source code. Requires source_type to be defined. | string | `null` | no |
11-
| source_type | (Optional) The location of the Lambda layer source type. Can be one of (nodejs, python) | string | `null` | no |
19+
|------|-------------|------|---------|:--------:|
20+
| compatible\_runtimes | (Optional) A list of Runtimes this layer is compatible with. Up to 5 runtimes can be specified. | `list(string)` | `null` | no |
21+
| description | (Optional) Description of what the Lambda layer does. | `string` | `null` | no |
22+
| layer\_name | (Required) A unique name for the Lambda Layer. | `string` | n/a | yes |
23+
| package\_file | (Optional) The location of the package manager config file. Can be one of (package.json, requirements.txt, Pipfile) | `string` | `null` | no |
24+
| rsync\_pattern | (Optional) A list of rsync pattern to include or exclude files and directories. | `list(string)` | <pre>[<br> "--include=*"<br>]</pre> | no |
25+
| source\_dir | (Optional) The location of the Lamvda layer source code. Requires source\_type to be defined. | `string` | `null` | no |
26+
| source\_type | (Optional) The location of the Lambda layer source type. Can be one of (nodejs, python) | `string` | `null` | no |
1227

1328
## Outputs
1429

1530
| Name | Description |
1631
|------|-------------|
1732
| arn | The Amazon Resource Name (ARN) of the Lambda layer with version. |
18-
| created_date | The date the layer was created. |
19-
| layer_arn | The Amazon Resource Name (ARN) of the Lambda layer without version. |
20-
| source_code_size | The size in bytes of the layer .zip file. |
33+
| created\_date | The date the layer was created. |
34+
| layer\_arn | The Amazon Resource Name (ARN) of the Lambda layer without version. |
35+
| source\_code\_size | The size in bytes of the layer .zip file. |
2136
| version | The Lamba layer version. |
2237

0 commit comments

Comments
 (0)