File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 77 - npm install --production
88 build :
99 commands :
10- - aws cloudformation package --template-file sam -template.yaml --s3-bucket $S3_BUCKET --s3-prefix githubprchannels --output-template-file cloudformation/template.yaml
10+ - aws cloudformation package --template-file stackset -template-root .yaml --s3-bucket $S3_BUCKET --s3-prefix githubprchannels --output-template-file cloudformation/template.yaml
1111artifacts :
1212 files :
1313 - cloudformation/template.yaml
Original file line number Diff line number Diff line change 1+ AWSTemplateFormatVersion : 2010-09-09
2+
3+ Parameters :
4+ AppEnv :
5+ Type : String
6+ AllowedValues :
7+ - local
8+ - sandbox
9+ - stage
10+ - prod
11+ Description : Environment of this stack
12+ LogLevel :
13+ Type : String
14+ Default : error
15+ AllowedValues :
16+ - trace
17+ - debug
18+ - info
19+ - warn
20+ - error
21+ - fatal
22+ Description : Probot app log level
23+
24+ Resources :
25+
26+ NestedSAMTemplateStack :
27+ Type : AWS::CloudFormation::Stack
28+ Properties :
29+ TemplateURL : " sam-template.yaml"
30+ Parameters :
31+ AppEnv :
32+ Ref : AppEnv
33+ LogLevel :
34+ Ref : LogLevel
You can’t perform that action at this time.
0 commit comments