Skip to content

Instantly share code, notes, and snippets.

@ck1125
Created November 26, 2020 20:51
Show Gist options
  • Save ck1125/7a7d032a6bae0e10a1e355d4a22a7494 to your computer and use it in GitHub Desktop.
Save ck1125/7a7d032a6bae0e10a1e355d4a22a7494 to your computer and use it in GitHub Desktop.
Example skill-stack.yaml
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