r/template_deployment: fixing support for nested template deployments #2514
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
As a part of switching over to the new Authentication library, we switched to using the Profile for resources. In retrospect it appears this broke support for Nested Template Deployments, which require an API version of
2017-05-10
or later, but the profile being used uses the API version2016-02-01
.As such this PR vendors version
2018-05-01
of the Resources SDK such that this is now fixed. We were missing a test for Nested Template Deployments - but I've added one which confirms the bug & fix:This new test currently fails on master:
But passes in this branch, containing the SDK upgrade:
Fixes #2507