Created
November 26, 2020 20:51
-
-
Save ck1125/7a7d032a6bae0e10a1e355d4a22a7494 to your computer and use it in GitHub Desktop.
Example skill-stack.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AlexaSkillFunction: | |
Type: AWS::Lambda::Function | |
Properties: | |
Code: | |
S3Bucket: | |
!Join | |
- '-' | |
- - 'my-bucket-name' | |
- !Ref 'AWS::Region' | |
- 'dev' | |
S3Key: !Ref CodeKey | |
Handler: !Ref LambdaHandler | |
Runtime: !Ref LambdaRuntime | |
Role: !GetAtt AlexaSkillIAMRole.Arn | |
MemorySize: 512 | |
Timeout: 60 | |
Tags: | |
- | |
Key: "MyFirsTag" | |
Value: "100" | |
- | |
Key: "MySecondTag" | |
Value: "Second Tag Value" | |
FunctionName: "MyLambdaFunctionName" | |
Environment: | |
Variables: | |
DYNAMO_DB_TABLE: "my-dynamo-db-table-name" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment