8000 AWS::Synthetics::Canary.RuntimeVersion AllowedValues expansion by camschaus · Pull Request #1801 · cloudtools/troposphere · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

AWS::Synthetics::Canary.RuntimeVersion AllowedValues expansion #1801

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

Merged
merged 2 commits into from
Oct 6, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
BC91
Diff view
3 changes: 2 additions & 1 deletion troposphere/validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,8 @@ def storage_type(storage_type):


def canary_runtime_version(runtime_version):
valid_runtime_versions = ['syn-1.0']
valid_runtime_versions = [
'syn-nodejs-2.0', 'syn-nodejs-2.0-beta', 'syn-1.0']
if runtime_version not in valid_runtime_versions:
raise ValueError(
'RuntimeVersion must be one of: "%s"' % (
Expand Down
0