From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id CA04527442 for ; Thu, 4 Sep 2025 15:15:30 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756998930; cv=none; b=EoN5/61QHZZNShOJ0DYzwS+1om9m5ZIhIPuWdKdUXd2KTpKwyOOnzwsbgmogIzDD0LVsjjF+UF009mB6IE64IBqavpgArx9HLirVVp7z1gLOg7CY60lJjQbnkLbiO92PGpGZLqUwaXZHQwDbomf/y6iqtpNE2JkU8O5dgS3el8Q= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756998930; c=relaxed/simple; bh=WojQQIor3gykHY8EhPlsg6bJy4byyuN0samwoZLxrYU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=KX34Jem/8N/fPUVIi06hL3D3kEiadRPmiQ+sPnkF0VSVhwHgbPe+NrecSmNy7f1L63cAbsPHHDtZYMC0RR9TQL9GegU6znB/XDLEI7m6P63T7lpfyI3pkyIg2fQMWEOvnHhQxKcRp7daCjU7gFfvx4YiYbBFu1ShD7trnEFk5Zw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=EeyeAcbS; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="EeyeAcbS" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2E467C4CEF1; Thu, 4 Sep 2025 15:15:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1756998930; bh=WojQQIor3gykHY8EhPlsg6bJy4byyuN0samwoZLxrYU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=EeyeAcbSVL1bZkOBSLC/A/DjBIV9ALB8UlhqhmuI+nXt0FeUZ15by74rb8JTRRP8A 8wr/vQqyjRgz6/xq32uuPOhcFbmxrQJcJjD20+EiEOLOP/mnfxe8lw9pQkg7bxTKg0 UIimYiKkel8jm+pNSAXoBrUGiFrjZQk+J1M3xLafjclkelySC4JKwz5ENQIJrRErUf 261KdsIuCn2xoX8tEYSNLxzAbLcVKVLmxKmdg+oquGCcv+RaOnl3ghI7OUPnCa/j7T 1annZhUnL/SDbC2qsWEbrqXIF8VOqmQqkHDOd53gYJRtQMYzPRMX54VtgEN+sswSXs IxJ9wPJXRhh9g== From: Chuck Lever To: Cc: Chuck Lever , Luis Chamberlain Subject: [PATCH v3 04/36] terraform/azure: Enable network acceleration Date: Thu, 4 Sep 2025 11:14:52 -0400 Message-ID: <20250904151526.1596282-5-cel@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250904151526.1596282-1-cel@kernel.org> References: <20250904151526.1596282-1-cel@kernel.org> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Chuck Lever This option appears to be on by default when creating VM machines via the Azure console. Reviewed-by: Luis Chamberlain Signed-off-by: Chuck Lever --- 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