We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Its not possible to deploy with a valid sqs source arn, because arn:aws:sqs:eu-central-1:12345:queue-name the decimals in the regex are not escaped.
^arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9-]+):([a-z]{2}((-gov)|(-iso(b?)))?-[a-z]+-d{1})?:(d{12})?:(.+)$
d{1} means 1 character d, but expected is \d{1} as one digit in eu-central-1
Valid arns should be accepted
escape d{1} and d{12} in regex with double backslash (\d)
The text was updated successfully, but these errors were encountered:
Fixed by #13
Sorry, something went wrong.
No branches or pull requests
Current Behavior
Its not possible to deploy with a valid sqs source arn, because arn:aws:sqs:eu-central-1:12345:queue-name the decimals in the regex are not escaped.
^arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9-]+):([a-z]{2}((-gov)|(-iso(b?)))?-[a-z]+-d{1})?:(d{12})?:(.+)$
d{1} means 1 character d, but expected is \d{1} as one digit in eu-central-1
Expected Behavior
Valid arns should be accepted
Steps to Reproduce the Problem
Fix:
escape d{1} and d{12} in regex with double backslash (\d)
Environment
The text was updated successfully, but these errors were encountered: