-
Notifications
You must be signed in to change notification settings - Fork 1
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
[ETL-635] Add dispatch-to-raw SQS queue #125
Conversation
template: | ||
path: sqs-queue.yaml | ||
parameters: | ||
MessageRetentionPeriod: "1209600" |
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.
Odd that these are all strings, but is this an artifact of sceptre?
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.
It's Cloudformation CLI behavior. Parameters must be string, even when they are defined in the template as Number
, as is the case here.
If I try to use an integer:
"Parameter validation failed:\nInvalid type for parameter Parameters[0].ParameterValue, value: 1209600, type: <class 'int'>, valid types: <class 'str'>"
Quality Gate passedIssues Measures |
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.
LGTM!
No description provided.