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 0E9E5247289 for ; Tue, 2 Sep 2025 13:54: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=1756821271; cv=none; b=EfP68+MniUCJnjwSr2ro42yExhBx/WJwHh/cliWwPgHjixm9gOKIZYK/ie2b17OWLoDU1mbsyFOyHXUcKU64OXlDrrwMiUpCYyptQMPi9G5nf9mFbCajiBuF55AXHZGI/cYbDgusD3+z0E+oXcZWhs67bkrLWx9URt3non8+vpI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756821271; c=relaxed/simple; bh=CiuDoHQGFNzYAlXUbPNJ/lX/PzSqxTxCbyOAnd6YoX0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=pRZkSN9dcC2fIlyX1L5k9svJp5IImHXKhEvnsEMGnCi+RtcrRW55G+S8f3633l+EMUqrVr8gwjk4SbuVPz1HsGgU/oMZc2HETuDDym0qaO/waUxk70saG66LyTqU9z9P1KKUHdo4ig70xK4OVPACswHwMTELxvh6eu72+62sog4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=KxCtbPGV; 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="KxCtbPGV" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 45C57C4CEF9; Tue, 2 Sep 2025 13:54:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1756821270; bh=CiuDoHQGFNzYAlXUbPNJ/lX/PzSqxTxCbyOAnd6YoX0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=KxCtbPGV/MylYC0Gx+M4hICRn7MTsP/JTzFoIwKtN2Dw7H0/n9IfrCnjJ4IgiTGQS fUnTZqJKQH+Gk7aAJiLcuHbvbcVXRU8zBHLJKI5tsVodni/7fZlLHfKoTytBmjd1iw 0xA+8/F54O+xqeKodu/Z8NbNTWcwlpDkknTzwJY2QyVqbxYtmEAXMwlt730OZ/JUpd EzEPBAqkq+Lp1XhcITtEwrLqLLdzb0Lat6l36gnsLtZ3YNTOLyKz7jwlU1wHslQT+z jxnOFGT0Ygiok5JtdbKklCbw4YsQTqf20+75ppJqLhXhJjVBWKnfZcUnTU0/qkwWGq r3wMZ68Dm9q+Q== From: Chuck Lever To: Cc: Chuck Lever , Luis Chamberlain Subject: [PATCH v2 03/37] terraform/azure: Remove tags from terraform configuration Date: Tue, 2 Sep 2025 09:53:50 -0400 Message-ID: <20250902135426.815079-4-cel@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250902135426.815079-1-cel@kernel.org> References: <20250902135426.815079-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 Clean up: as far as I can tell these are unused anywhere. Reviewed-by: Luis Chamberlain Signed-off-by: Chuck Lever --- terraform/azure/main.tf | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/terraform/azure/main.tf b/terraform/azure/main.tf index 2df0dc609381..e1d99cecf003 100644 --- a/terraform/azure/main.tf +++ b/terraform/azure/main.tf @@ -3,10 +3,6 @@ resource "azurerm_resource_group" "kdevops_group" { name = "kdevops_resource_group" location = var.azure_location - - tags = { - environment = "kdevops tests" - } } locals { @@ -18,10 +14,6 @@ resource "azurerm_virtual_network" "kdevops_network" { address_space = [local.kdevops_private_net] location = var.azure_location resource_group_name = azurerm_resource_group.kdevops_group.name - - tags = { - environment = "kdevops tests" - } } resource "azurerm_subnet" "kdevops_subnet" { @@ -37,10 +29,6 @@ resource "azurerm_public_ip" "kdevops_publicip" { location = var.azure_location resource_group_name = azurerm_resource_group.kdevops_group.name allocation_method = "Static" - - tags = { - environment = "kdevops tests" - } } resource "azurerm_network_security_group" "kdevops_sg" { @@ -59,10 +47,6 @@ resource "azurerm_network_security_group" "kdevops_sg" { source_address_prefix = "*" destination_address_prefix = "*" } - - tags = { - environment = "kdevops tests" - } } resource "azurerm_network_interface_security_group_association" "kdevops_sg_assoc" { @@ -83,10 +67,6 @@ resource "azurerm_network_interface" "kdevops_nic" { private_ip_address_allocation = "Dynamic" public_ip_address_id = element(azurerm_public_ip.kdevops_publicip.*.id, count.index) } - - tags = { - environment = "kdevops tests" - } } resource "azurerm_linux_virtual_machine" "kdevops_vm" { @@ -132,10 +112,6 @@ resource "azurerm_linux_virtual_machine" "kdevops_vm" { username = var.ssh_config_user public_key = var.ssh_config_pubkey_file != "" ? file(var.ssh_config_pubkey_file) : "" } - - tags = { - environment = "kdevops tests" - } } module "kdevops_managed_disks" { -- 2.51.0