[PATCH v3 04/36] terraform/azure: Enable network acceleration
Chuck Lever <[email protected]>
| Newsgroups | dev.linux.lists.kdevops |
|---|---|
| Message-ID | <[email protected]> |
From: Chuck Lever <[email protected]> This option appears to be on by default when creating VM machines via the Azure console. Reviewed-by: Luis Chamberlain <[email protected]> Signed-off-by: Chuck Lever <[email protected]> --- terraform/azure/main.tf | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/terraform/azure/main.tf b/terraform/azure/main.tf index e1d99cecf003..c178c34d0180 100644 --- a/terraform/azure/main.tf +++ b/terraform/azure/main.tf @@ -56,10 +56,11 @@ resource "azurerm_network_interface_security_group_association" "kdevops_sg_asso } resource "azurerm_network_interface" "kdevops_nic" { - count = local.kdevops_num_boxes - name = format("kdevops_nic_%02d", count.index + 1) - location = var.azure_location - resource_group_name = azurerm_resource_group.kdevops_group.name + count = local.kdevops_num_boxes + accelerated_networking_enabled = true + name = format("kdevops_nic_%02d", count.index + 1) + location = var.azure_location + resource_group_name = azurerm_resource_group.kdevops_group.name ip_configuration { name = "kdevops_nic_configuration" -- 2.51.0