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 1648427442 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=P1XaD4ht/st3EdAl+3yzgUD0BffBk2dA9I29wIaySWd9wH83hpfwNV0hAog1SnTtBp/3YU6+/uPoXfhFx4ylm2Zg9BLlZSqEr0Ch07uaKc4NgSdA0vI6vdmErLDyq/aQb+V3ax857YL7YXow7xnFKdyG3KmfGny4ZbJPOFBi4Rk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756998930; c=relaxed/simple; bh=CiuDoHQGFNzYAlXUbPNJ/lX/PzSqxTxCbyOAnd6YoX0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=XKCKa17euNC2R8msrmzvtjpyw5P3T0xWRgd+4A6NByc03VAWwXlFviRWT2IGVyU72leT/YEc1n4lgDEK1BGZJr0G3OCo5HE9mLE9/nrQx7otdsxf0XEIxdq5/mtN5whtTl3t2jta/pP8Euq1VgmHl8tFD5GkFeYnVI3SlduZ0EM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=UavdZNlE; 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="UavdZNlE" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A7FAAC4CEF9; Thu, 4 Sep 2025 15:15:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1756998930; bh=CiuDoHQGFNzYAlXUbPNJ/lX/PzSqxTxCbyOAnd6YoX0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=UavdZNlEgwjjZDNW/IxtJaWt7wdCQyZUUDQ5gHAnRsXJzHEDcWzS/X84Ryc1UU5x7 czM+lnYxS++aoSAFoNHBfWBPVB87vIFDFqPk0HLEUdICJ4LAOweEAm8c5Tngy6rfL7 WYtRFod94vz3/88vX1e3Z+jdIBlIbH4IT0dZNdcje9wrLMAjQFfK1AF/ost2easBlz OT8Lwt+lehAgCeB6IBLSGHeh917LkGWaPJay045z8Bw0Tj1DbngS2zmooe7Q9mK4sq M3/CRRHKXDi3rpMi8e2hAkLm74fFOnmZbQwXJp1xhSZclKVgsR36lWje3V2dY/au6P AYZkkQQ2hk2OQ== From: Chuck Lever To: Cc: Chuck Lever , Luis Chamberlain Subject: [PATCH v3 03/36] terraform/azure: Remove tags from terraform configuration Date: Thu, 4 Sep 2025 11:14:51 -0400 Message-ID: <20250904151526.1596282-4-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 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