-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
azurerm_kubernetes_cluster_node_pool
: Adds support for temporary_name_for_rotation
#27791
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
28cd0a6
Adds property.
CorrenSoft 9f16c5f
Updating tests.
CorrenSoft bea1b62
Updating Docs.
CorrenSoft 262a984
Fixing value assignment.
CorrenSoft aacec00
Updating properties values from HCL definition.
CorrenSoft 9587d0f
Remove unused function (schemaNodePoolSysctlConfigForceNew)
CorrenSoft 10394d4
Fixing docs
CorrenSoft 95a3f19
Merge remote-tracking branch 'remotes/origin/main' into feature/22265
CorrenSoft 71939b0
Update pointer's function.
CorrenSoft 2385b1b
Improving subnet assignment
CorrenSoft 67c5bcc
Fixing zones not being updated when value was set to null.
CorrenSoft b3ff967
Fixing assigment when value is null
CorrenSoft cbdf94e
Restoring files lose on merge.
CorrenSoft 51cb263
Linting
CorrenSoft 6bf82b9
Adds 'TestAccKubernetesClusterNodePool_updateVmSizeAfterFailureWithTe…
CorrenSoft 37ad21e
Adds TestAccKubernetesCluster_updateVmSizeAfterFailureWithTempWithout…
CorrenSoft 28e85bb
Fix test's name.
CorrenSoft 1b8100e
Removing deprecated test and applying feedback.
CorrenSoft 9e8e171
Applying feedback.
CorrenSoft 22e2f23
Removing obsolete code.
CorrenSoft File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
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.
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.
These two lines are very important and need to be added back in since we're collecting all of the changes made to a resource in the
props
object.The existing resource's
Properties
needs to be replaced/overridden with the objectprops
otherwise all references toexisting.Model
won't contain the changes made to the resource.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.
The variable
props
is created above byprops := existing.Model.Properties
, which means that the props variable will hold a reference to the original Properties field of existing.Model. Therefore, any changes made to props will also affect existing.Model.Properties and is not necessary to reassign back.The log line has been moved down, in the else part of
if cycleNodePool {
.