-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Integrate Intrinsics #1333
Integrate Intrinsics #1333
Conversation
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.
Are there any additional integ tests that would improve the confidence in release this? Trying to see if we can level up here in any way.
@@ -60,8 +47,15 @@ def get_template(template_dict, parameter_overrides=None): | |||
if template_dict: | |||
template_dict = SamTranslatorWrapper(template_dict).run_plugins() | |||
|
|||
template_dict = SamBaseProvider._resolve_parameters(template_dict, parameter_overrides) | |||
template_dict = SamBaseProvider._resolve_parameters( |
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 needed anymore since we have the full resolver now?
Did you address this? #1261 (comment) Unless I am missing it, region will resolve to whatever the default is but not based on profile or region passed into the command. This will make resolving arns in Fn::Sub not complete. This is really important for things like Layers. |
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.
WOOT!!!!!
Great work to get this over the line @viksrivat! |
Issue #, if available:
This is an update to the #1261 pr by integrating intrinsics into the translator.
Description of changes:
Checklist:
make pr
passesBy submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.