terraform-provider-azurerm
terraform-provider-azurerm copied to clipboard
Support for auxiliary_mode, auxiliary_sku in vmss network_profile
Is there an existing issue for this?
- [x] I have searched the existing issues
Community Note
- Please vote on this issue by adding a :thumbsup: reaction to the original issue to help the community and maintainers prioritize this request
- Please do not leave comments along the lines of "+1", "me too" or "any updates", they generate extra noise for issue followers and do not help prioritize the request
- If you are interested in working on this issue or have submitted a pull request, please leave a comment and review the contribution guide to help.
Description
support for auxiliaryMode/Sku was implemented for nics in https://github.com/hashicorp/terraform-provider-azurerm/pull/22979 however it is missing in vmss network profile.
A typical snippet in bicep would look like
virtualMachineProfile: {
networkProfile: {
networkInterfaceConfigurations: [
{
name: 'nic'
properties: {
primary: true
enableAcceleratedNetworking: true
enableIPForwarding: true
auxiliaryMode: 'AcceleratedConnections'
auxiliarySku: 'A1'
...
New or Affected Resource(s)/Data Source(s)
azurerm_virtual_machine_scale_set
Potential Terraform Configuration
TBD
References
https://github.com/hashicorp/terraform-provider-azurerm/pull/22979