-
Notifications
You must be signed in to change notification settings - Fork 9.6k
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
Fix azurerm_virtual_machine_scale_sets #11516
Conversation
Hi @rrudduck Thanks for the work here - I would love to see a couple of acceptance tests added to show that this all works as expected :) We will also need to update the relevant documentation for this Thanks Paul |
Sure, I can take care of that. |
You Rock! |
#11400 is related to this |
@rrudduck You probably want to update the documentation as well, mentioning that you have to specify either |
Docs updated and tests for the lb and overprovision changes are done. I didn't create a test for the image related changes as it requires a custom image to be available in the storage account before creating the scale set. I didn't see a good way to do that given how the tests run. |
@rrudduck . I was using packer to create the custom image post the storage account creation |
Hi @rrudduck Thanks for the work here - this LGTM! I have just been able to run the tests on our CI server :) Paul |
* Image and vhdcontainers are mutually exclusive. * Fix ip configuration handling and update support for load balancer backend pools. * Fix os disk handling. * Remove os_type from disk hash. * Load balancer pools should not be computed. * Add support for the overprovision property. * Update documentation. * Create acceptance test for scale set lb changes. * Create acceptance test for scale set overprovisioning.
* Image and vhdcontainers are mutually exclusive. * Fix ip configuration handling and update support for load balancer backend pools. * Fix os disk handling. * Remove os_type from disk hash. * Load balancer pools should not be computed. * Add support for the overprovision property. * Update documentation. * Create acceptance test for scale set lb changes. * Create acceptance test for scale set overprovisioning.
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
This PR attempts to fix a number of issues with the current azurerm_virtual_machine_scale_sets resource.
I've run though various tests using my Azure account and things seem to work correctly. Any feedback is appreciated!
Thanks.