-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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(lambda): enforce lambda alias alphanumeric logical id #3738
base: develop
Are you sure you want to change the base?
Conversation
So this is currently already failing, but with a different error, right? (because we try to use the Should we try to actually support this instead of just showing a better error? (it's an honest question, I'm not sure if it's possible to do something about it, instead of just "making it fail correctly") Because the console, API and CFN do support Aliases with dashes. |
No. The changes contain 2 parts as described on the overview: 1)added validation for Lambda alias names which only allow numeric characters, alphabetic characters, I think something we can improve is rather than replace
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we add transform failure tests as well? Like testing that a SAM template with an invalid Alias name results in a specific transform error? Please see Transform failure tests guide.
There is no backward compatibility issue since SAM users currently cannot deploy a SAM template with alias name containing |
if not re.match(ALIAS_REGEX, name): | ||
raise InvalidResourceException( | ||
self.logical_id, | ||
f"AutoPublishAlias name ('{name}') must contain only alphanumeric characters, hyphens, or underscores matching (?!^[0-9]+$)([a-zA-Z0-9-_]+) pattern.", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this the error message that gets returned from the API for example? We could try to have a consistent messaging with what the API returns in case of error
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While, I agree that we should try to preserve the wording from the API, in this case I think we should improve on the message. The proposed error message format enhances clarity by identifying invalid properties, providing user-friendly validation requirements, and including regex patterns for technical users.
In console, frontend validation already shows different message than what api shows. I do not see much value to stick to the exact API error message.
Console:
CLI:
$ aws lambda create-alias --function-name my-project-one-stack-name --function-version '$LATEST' --name 'asdf67#*9_-'
An error occurred (ValidationException) when calling the CreateAlias operation: 1 validation error detected:
Value 'asdf67#*9_-' at 'name' failed to satisfy constraint: Member must satisfy regular expression pattern: (?!^[0-9]+$)([a-zA-Z0-9-_]+)
@@ -0,0 +1,9 @@ | |||
Resources: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you add one extra input/output test case file that's VALID, with dashes and/or underscores? (that tests the new behavior that this PR supports)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added multiple valid alias name combinations for contrac test.
Issue #, if available
When using the
AutoPublishAlias
property in a SAM template, SAM appends the alias string to form a new logical ID for the alias resource. If the alias value contains non-alphanumeric (-
or/and_
), the resulting logical ID violates the naming convention, causing the deployment to fail. The CloudFormation naming convention for logical IDs (resource names) requires all name to be strictly alphanumeric.The issue happens during deployment when the customers specify alias names for AutoPublishAlias that containing
-
and/or_
in an AWS Serverless Application Model (SAM) CloudFormation template.According to https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#cfn-lambda-alias-name, the valid alias name should match the following regex: (?!^[0-9]+$)([a-zA-Z0-9-_]+) which
Examples:
Description of changes
This commit adds validation for Lambda alias names in the AWS SAM transform to ensure they produce valid CloudFormation logical IDs. The key changes are:
Added validation for Lambda alias names:
• Implemented regex validation to ensure alias names follow the pattern (?!^[0-9]+$)([a-zA-Z0-9-_]+)
• This ensures alias names contain only alphanumeric characters, hyphens, and underscores
• Prevents purely numeric alias names (which would create invalid CloudFormation resources)
Modified logical ID generation for Lambda aliases:
• Previously: {function.logical_id}Alias{name}
• Now: {function.logical_id}Alias{alias_alphanumeric_name}
• The change strips hyphens and underscores from alias names to ensure the logical ID contains only alphanumeric characters
Description of how you validated changes
Added test cases:
• Tests for valid alias names (e.g., "aliasname", "alias-name", "alias_name", "mixed-Case_123")
• Tests for invalid alias names (e.g., purely numeric "123", names with spaces, names with special characters)
• Verification that the logical IDs are correctly generated
Checklist
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.