-
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_orchestrated_virtual_machine_scale_set
- Add Priority_Mix
property
#20618
azurerm_orchestrated_virtual_machine_scale_set
- Add Priority_Mix
property
#20618
Conversation
This property is only available for VMSS with Flexible orchestration mode. Based on the documentation here it looks like the "orchestrated" virtual machine scale set is the mechanism for creating a VMSS with Flexible orchestration. The other two .go files (linux VMScaleSet, Windows VMScaleSet) for creating VMSS create VMSS w/ uniform orchestration only. And it looks like "azure_virtual_machine_scale_set" is being deprecated in favor of these two. |
azurerm_orchestrated_virtual_machine_scale_set
- Add PriorityMixPolicy property
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.
@aleclawlor, thank for this PR. This is looking really good, however I did leave a few very minor comments to be addressed. Other than that this LGTM! Awesome job! 🚀
internal/services/compute/orchestrated_virtual_machine_scale_set.go
Outdated
Show resolved
Hide resolved
internal/services/compute/orchestrated_virtual_machine_scale_set_resource.go
Outdated
Show resolved
Hide resolved
internal/services/compute/orchestrated_virtual_machine_scale_set_resource.go
Outdated
Show resolved
Hide resolved
internal/services/compute/orchestrated_virtual_machine_scale_set_resource.go
Outdated
Show resolved
Hide resolved
internal/services/compute/orchestrated_virtual_machine_scale_set_resource.go
Outdated
Show resolved
Hide resolved
internal/services/compute/orchestrated_virtual_machine_scale_set_resource_test.go
Outdated
Show resolved
Hide resolved
website/docs/r/orchestrated_virtual_machine_scale_set.html.markdown
Outdated
Show resolved
Hide resolved
website/docs/r/orchestrated_virtual_machine_scale_set.html.markdown
Outdated
Show resolved
Hide resolved
website/docs/r/orchestrated_virtual_machine_scale_set.html.markdown
Outdated
Show resolved
Hide resolved
azurerm_orchestrated_virtual_machine_scale_set
- Add PriorityMixPolicy propertyazurerm_orchestrated_virtual_machine_scale_set
- Add Priority_Mix
property
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.
@aleclawlor, thanks for pushing those changes... LGTM! 🚀
This functionality has been released in v3.46.0 of the Terraform Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active contributions. |
Adds the PriorityMixPolicy property to VMSS with Flexible Orchestration mode. This property allows customers to specify target splits between regular and Spot priority VMs within a scale set. It consists of two sub properties:
The property has already been added to Azure CLI, PowerShell, and SDKs, including the Go SDK.