Skip to content

Commit

Permalink
Support CFN parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
toricls committed Jun 15, 2021
1 parent 375b86a commit c70685a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion cf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,18 @@
# SPDX-License-Identifier: Apache-2.0
AWSTemplateFormatVersion: 2010-09-09
Description: CloudFormation template that deploys hello-app-runner app
Parameters:
ServiceName:
Type: String
Default: hello-app-runner
Description: Name for your App Runner service.
Resources:
Service:
Metadata:
'aws:apprunner:description': 'hello-app-runner example service'
Type: AWS::AppRunner::Service
Properties:
ServiceName: hello-app-runner
ServiceName: !Ref ServiceName
SourceConfiguration:
AutoDeploymentsEnabled: false
ImageRepository:
Expand Down

0 comments on commit c70685a

Please sign in to comment.