Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ Resources:
EnvironmentVariable3: '' # optional
ManagedPolicyArns: '' # optional
LayerArns: '' # optional
ClientSgModule1: '' # optional
ClientSgModule2: '' # optional
ClientSgModule3: '' # optional
TemplateURL: './node_modules/@cfn-modules/lambda-function/module.yml'
```

Expand Down Expand Up @@ -212,6 +215,27 @@ Resources:
<td>no</td>
<td></td>
</tr>
<tr>
<td>ClientSgModule1</td>
<td>Stack name of <a href="https://www.npmjs.com/package/@cfn-modules/client-sg">client-sg module</a> module to mark traffic from Lambda function (requires VpcModule parameter)</td>
<td></td>
<td>no</td>
<td></td>
</tr>
<tr>
<td>ClientSgModule2</td>
<td>Stack name of <a href="https://www.npmjs.com/package/@cfn-modules/client-sg">client-sg module</a> module to mark traffic from Lambda function (requires VpcModule parameter)</td>
<td></td>
<td>no</td>
<td></td>
</tr>
<tr>
<td>ClientSgModule3</td>
<td>Stack name of <a href="https://www.npmjs.com/package/@cfn-modules/client-sg">client-sg module</a> module to mark traffic from Lambda function (requires VpcModule parameter)</td>
<td></td>
<td>no</td>
<td></td>
</tr>
</tbody>
</table>

Expand Down
8 changes: 4 additions & 4 deletions module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,15 +117,15 @@ Parameters:
Type: String
Default: ''
ClientSgModule1:
Description: 'Optional stack name of client-sg module to mark traffic from the Lambda.'
Description: 'Optional stack name of client-sg module to mark traffic from the Lambda function.'
Type: String
Default: ''
ClientSgModule2:
Description: 'Optional stack name of client-sg module to mark traffic from the Lambda.'
Description: 'Optional stack name of client-sg module to mark traffic from the Lambda function.'
Type: String
Default: ''
ClientSgModule3:
Description: 'Optional stack name of client-sg module to mark traffic from the Lambda.'
Description: 'Optional stack name of client-sg module to mark traffic from the Lambda function.'
Type: String
Default: ''
Conditions:
Expand Down Expand Up @@ -279,7 +279,7 @@ Outputs:
ModuleId:
Value: 'lambda-function'
ModuleVersion:
Value: '2.0.0'
Value: '2.1.0'
StackName:
Value: !Ref 'AWS::StackName'
Arn:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cfn-modules/lambda-function",
"version": "2.0.0",
"version": "2.1.0",
"description": "AWS Lambda function with automated IAM policy generation, encryption, log group and alerting",
"author": "Michael Wittig <[email protected]>",
"license": "Apache-2.0",
Expand Down