You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(apprunner-alpha): support autoDeploymentsEnabled flag for Service (#24612)
The alpha construct for AWS App Runner is missing an option to set auto deployment settings.
Users now can specify the `autoDeploymentsEnbaled` flag in the construct props.
Closes#24529
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
* Specifies whether to enable continuous integration from the source repository.
580
+
*
581
+
* If true, continuous integration from the source repository is enabled for the App Runner service.
582
+
* Each repository change (including any source code commit or new image version) starts a deployment.
583
+
* By default, App Runner sets to false for a source image that uses an ECR Public repository or an ECR repository that's in an AWS account other than the one that the service is in.
584
+
* App Runner sets to true in all other cases (which currently include a source code repository or a source image using a same-account ECR repository).
585
+
*
586
+
* @default - no value will be passed.
587
+
*/
588
+
readonlyautoDeploymentsEnabled?: boolean;
589
+
578
590
/**
579
591
* The number of CPU units reserved for each instance of your App Runner service.
580
592
*
@@ -1001,6 +1013,7 @@ export class Service extends cdk.Resource {
Copy file name to clipboardExpand all lines: packages/@aws-cdk/aws-apprunner/test/integ.service-ecr-public.js.snapshot/integ-apprunner-ecr-public.assets.json
Copy file name to clipboardExpand all lines: packages/@aws-cdk/aws-apprunner/test/integ.service-ecr-public.js.snapshot/integ-apprunner-ecr-public.template.json
0 commit comments