From c70685a3e1c8faaa2b54d2bd4d52c92b1f1ae99f Mon Sep 17 00:00:00 2001 From: Tori Hara Date: Tue, 15 Jun 2021 13:41:01 +0900 Subject: [PATCH] Support CFN parameter --- cf.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/cf.yaml b/cf.yaml index c2d9173..03ebfd3 100644 --- a/cf.yaml +++ b/cf.yaml @@ -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: