-
Notifications
You must be signed in to change notification settings - Fork 478
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
Updating values forces create new resources #85
Comments
Hi @sshah90 , thanks for opening this issue. Would you provide your Azurerm version, terraform version, your hcl script and reproducing steps to help to reproduce this problem? Sorry that I can not reproduce this problem now. |
Hi @sshah90 ,sorry that I could not reproduce your error.
|
Hi @yupwei68, sorry for the late reply. I have my code somewhere but not able to find it at this moment. I will try to reproduce this issue over the weekend and let u know. |
I'm closing this issue due to no further response. Please feel free to reopen this issue if you can reproduce this issue with the latest version, thanks for your understanding @sshah90 . |
Hello, This is a very easy module to work with but after deploying AKS cluster but when I try to apply some changes/updates it creates a new cluster.
After debugging I figure out that there are some values that are by default set up as "null" which causing this re-creation.
Check Below screenshots from my plan
As you can see
node_taints
(this var needs to be added in the module),agents_availability_zones
should be[]
but as its default value is null so if a user doesn't provide it so resource recreate aks.If we don't set auto_scaling for the default node pool then max and min pod should be
0
not null and the same goes withnetwork_policy
as well.Please update/add the following variable's default values.
0
here)The text was updated successfully, but these errors were encountered: