You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 4, 2022. It is now read-only.
#name - DNS-friendly name for the workshop. This will be used when generating the hosting URL (ie. https://my-first-workshop.workshops.aws/)
2
+
name: ci-cd-for-serverless-apps
3
+
#title - The title of your workshop
4
+
title: CI/CD for Serverless Applications
5
+
#description - A short description that will be displayed in search results
6
+
description: In this workshop, you will learn how to start a new Serverless application from scratch using the AWS Serverless Application Model (AWS SAM) and how to fully automate builds and deployments by building a continous delivery pipeline using AWS CodeCommit, AWS CodeBuild and AWS CodePipeline. You will also learn how to test a Serverless application locally using the SAM CLI.
7
+
#categories - Refer to official AWS categories covered by the workshop content here
8
+
categories:
9
+
- Serverless
10
+
- Lambda
11
+
- Continous Delivery
12
+
- Automation
13
+
- SAM
14
+
#services - Refer to the official AWS service names covered by the workshop content here
15
+
services:
16
+
- API Gateway
17
+
- Lambda
18
+
- CodePipeline
19
+
- CodeCommit
20
+
- CodeBuild
21
+
- CloudFormation
22
+
#level - Approximate skill level needed for this workshop
23
+
level: 300
24
+
#duration - Estimated duration in minutes
25
+
duration: 120
26
+
#cost - Cost in USD. If the content is offered without cost, enter 0
27
+
cost: 0
28
+
#author - Amazon alias of the primary author of the content
29
+
author: fdingler
30
+
#audience - Names of the personas associated with this workshop
Description: Environment type used by AWS CodeBuild. See the documentation for details (https://docs.aws.amazon.com/codebuild/latest/userguide/create-project.html#create-project-cli).
53
+
Type: String
54
+
SourceCodeProvider:
55
+
Type: String
56
+
Description: Location of your source code repository
57
+
Default: CodeCommit
58
+
AllowedValues:
59
+
- CodeCommit
60
+
CodeCommitRepoName:
61
+
Type: String
62
+
Description: CodeCommit repository name, only specify if you chose CodeCommit in SourceCodeProvider
63
+
Default: 'sam-app'
64
+
CodeCommitBranch:
65
+
Type: String
66
+
Description: CodeCommit repository branch name, only specify if you chose CodeCommit in SourceCodeProvider.
67
+
Default: master
68
+
DeployParameterOverrides:
69
+
Description: Parameter overrides for the deploy stage
0 commit comments