Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Incorrect AWS Lambda Qualifier Regexp
Type of change: =============== - Bug fix What changed? ... and Why: ========================== The regexp is currently set to: `pattern := `^[a-zA-Z0-9$_]+$` The AWS docs state that qualifer names must conform to the following regexp: `Pattern: (|[a-zA-Z0-9$_-]+)` As you can see, the current regexp in Terraform is missing the `-` at the end. This addresses that. How has it been tested? ======================= Added a few test cases to the existing spec for `AwsLambdaQualifier` validation.
- Loading branch information