Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ecr): allow creating repository uri to use tokens like cfn params #32053

Merged
merged 11 commits into from
Nov 8, 2024
Prev Previous commit
Next Next commit
fix build
  • Loading branch information
moelasmar committed Nov 8, 2024
commit 94e5fe288a64a44caab6445fd9c6d4de2295d9e2
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ class TestLambdaFunction extends cdk.Stack {
authType: lambda.FunctionUrlAuthType.NONE,
});

// Changes the function description when the feature flag is present
// to validate the changed function hash.
// Changes the function description when the feature flag is present
// to validate the changed function hash.
cdk.Aspects.of(this).add(new lambda.FunctionVersionUpgrade(LAMBDA_RECOGNIZE_LAYER_VERSION));

new lambda.Function(this, 'MySnapStartLambda', {
Expand Down