forked from awslabs/aws-lambda-powershell-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.yml
81 lines (79 loc) · 2.92 KB
/
template.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: Demo to explore how the PowerShell custom runtime and a Lambda function work.
##########################################################################
# Parameters & Globals #
##########################################################################
Globals:
Function:
Tracing: Active
Tags:
Application: demo-runtime-layer-function
Resources:
##########################################################################
# Lambda functions #
##########################################################################
DemoPowerShellFunction:
Type: AWS::Serverless::Function
Properties:
Description: PowerShell-Lambda-Runtime Demo Function
CodeUri: function/
Runtime: provided.al2
Handler: examplehandler.ps1::handler
MemorySize: 1024
Timeout: 100
Layers:
- !Ref PwshRuntimeLayer
- !Ref DemoAWSToolsLayer
Metadata:
BuildMethod: makefile
##########################################################################
# Lambda layers #
##########################################################################
PwshRuntimeLayer:
Type: AWS::Serverless::LayerVersion
Properties:
Description: Lambda Layer containing PowerShell
ContentUri: ../../powershell-runtime
CompatibleRuntimes:
- provided.al2
RetentionPolicy: Delete
Metadata:
BuildMethod: makefile
DemoPwshRuntimeParameter:
Type: AWS::SSM::Parameter
Properties:
Name: demo-lambda-powershell-runtime-latest-version-arn
Description: PwshRuntime Layer Name
Type: String
Value: !Ref PwshRuntimeLayer
DemoAWSToolsLayer:
Type: AWS::Serverless::LayerVersion
Properties:
Description: Layer containing Demo-AWS.Tools
ContentUri: ../../powershell-modules/AWSToolsforPowerShell/Demo-AWS.Tools
CompatibleRuntimes:
- provided.al2
RetentionPolicy: Delete
Metadata:
BuildMethod: makefile
DemoAWSToolsParameter:
Type: AWS::SSM::Parameter
Properties:
Name: lambda-powershell-DemoAWSTools-latest-version-arn
Description: DemoAWSTools Layer Name
Type: String
Value: !Ref DemoAWSToolsLayer
##########################################################################
# OUTPUTS #
##########################################################################
Outputs:
PwshRuntimeLayer:
Value: !Ref PwshRuntimeLayer
Description: PwshRuntimeLayer Layer ARN
DemoAWSToolsLayer:
Value: !Ref DemoAWSToolsLayer
Description: DemoAWSToolsLayer Layer ARN
DemoPowerShellFunction:
Value: !Ref DemoPowerShellFunction
Description: PowerShell Lambda Function