We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 375b86a commit c70685aCopy full SHA for c70685a
cf.yaml
@@ -2,13 +2,18 @@
2
# SPDX-License-Identifier: Apache-2.0
3
AWSTemplateFormatVersion: 2010-09-09
4
Description: CloudFormation template that deploys hello-app-runner app
5
+Parameters:
6
+ ServiceName:
7
+ Type: String
8
+ Default: hello-app-runner
9
+ Description: Name for your App Runner service.
10
Resources:
11
Service:
12
Metadata:
13
'aws:apprunner:description': 'hello-app-runner example service'
14
Type: AWS::AppRunner::Service
15
Properties:
- ServiceName: hello-app-runner
16
+ ServiceName: !Ref ServiceName
17
SourceConfiguration:
18
AutoDeploymentsEnabled: false
19
ImageRepository:
0 commit comments