@@ -103,29 +103,29 @@ runs:
103103
104104 aws cloudformation package \
105105 --template-file apps/main-cf.yml \
106- --s3-bucket ' ${{ inputs.TEMPLATE_BUCKET }}' \
106+ --s3-bucket ${{ inputs.TEMPLATE_BUCKET }} \
107107 --output-template-file packaged.yml
108108
109- export STACK_NAME=' ${{ inputs.STACK_NAME }}'
109+ export STACK_NAME=${{ inputs.STACK_NAME }}
110110 cdk diff
111111 cdk deploy \
112112 --require-approval=never \
113113 --parameters \
114- VpcId='${{ inputs.VPC_ID }}' \
115- SubnetIds='${{ inputs.SUBNET_IDS }}' \
116- SecretArn='${{ inputs.SECRET_ARN }}' \
117- ImageTag='${{ inputs.IMAGE_TAG }}' \
118- ProductLifetimeInDays='${{ inputs.PRODUCT_LIFETIME }}' \
119- AuthPublicKey='${{ inputs.AUTH_PUBLIC_KEY }}' \
120- $DOMAIN_NAME \
121- $CERTIFICATE_ARN \
122- $ORIGIN_ACCESS_IDENTITY_ID \
123- $DISTRIBUTION_URL \
124- DefaultCreditsPerUser='${{ inputs.DEFAULT_CREDITS_PER_USER }}' \
125- DefaultApplicationStatus='${{ inputs.DEFAULT_APPLICATION_STATUS }}' \
126- DefaultMaxvCpus='${{ inputs.DEFAULT_MAX_VCPUS }}' \
127- ExpandedMaxvCpus='${{ inputs.EXPANDED_MAX_VCPUS }}' \
128- MonthlyBudget='${{ inputs.MONTHLY_BUDGET }}' \
129- RequiredSurplus='${{ inputs.REQUIRED_SURPLUS }}' \
130- AmiId='${{ inputs.AMI_ID }}' \
131- InstanceTypes='${{ inputs.INSTANCE_TYPES }}'
114+ : VpcId='${{ inputs.VPC_ID }}' \
115+ : SubnetIds='${{ inputs.SUBNET_IDS }}' \
116+ : SecretArn='${{ inputs.SECRET_ARN }}' \
117+ : ImageTag='${{ inputs.IMAGE_TAG }}' \
118+ : ProductLifetimeInDays='${{ inputs.PRODUCT_LIFETIME }}' \
119+ : AuthPublicKey='${{ inputs.AUTH_PUBLIC_KEY }}' \
120+ : $DOMAIN_NAME \
121+ : $CERTIFICATE_ARN \
122+ : $ORIGIN_ACCESS_IDENTITY_ID \
123+ : $DISTRIBUTION_URL \
124+ : DefaultCreditsPerUser='${{ inputs.DEFAULT_CREDITS_PER_USER }}' \
125+ : DefaultApplicationStatus='${{ inputs.DEFAULT_APPLICATION_STATUS }}' \
126+ : DefaultMaxvCpus='${{ inputs.DEFAULT_MAX_VCPUS }}' \
127+ : ExpandedMaxvCpus='${{ inputs.EXPANDED_MAX_VCPUS }}' \
128+ : MonthlyBudget='${{ inputs.MONTHLY_BUDGET }}' \
129+ : RequiredSurplus='${{ inputs.REQUIRED_SURPLUS }}' \
130+ : AmiId='${{ inputs.AMI_ID }}' \
131+ : InstanceTypes='${{ inputs.INSTANCE_TYPES }}'
0 commit comments