mirror of
https://github.com/autistic-symposium/backend-and-orchestration-toolkit.git
synced 2025-06-10 16:02:50 -04:00
11 lines
317 B
YAML
Executable file
11 lines
317 B
YAML
Executable file
AWSTemplateFormatVersion: '2010-09-09'
|
|
Transform: 'AWS::Serverless-2016-10-31'
|
|
Description: Monitoring test lambda
|
|
Resources:
|
|
MonitoringTest:
|
|
Type: 'AWS::Serverless::Function'
|
|
Properties:
|
|
Handler: index.handler
|
|
Runtime: nodejs8.10
|
|
Description: Monitoring test lambda
|
|
MemorySize: 256
|