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 158AC2116E7 for ; Wed, 27 Aug 2025 14:28:35 +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=1756304916; cv=none; b=Ek7YIYBWJokPR4RJds0G6TbIv1oK+k6oRrSewgMyQYxsiylZFN0aQWfQqjppCBJzeYnE//CFQ4nCpVoSoF9TogVVd8Vvd5dlgvkK2qsZcmI5sCjWcpj0DlbhWHYzDQ4JHq+o9mgwAPCTq7Vw9MiKcQ8t7TBfGHhBXbWghnf7sI0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756304916; c=relaxed/simple; bh=R8wXK7PeTJbktHXY+DELJQkVpFsI5h68rGGShOnYRDc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=BLA+TjCnFav9QSpyeZzyDP3bR3D6TaEflnGBzaUCAHHq3E8QaXBb0Fu50XuOOhQflCGgxsa8+IKMnmZdmtc2sI+Pkxjb8QO+olhLCfJg6SMFQakd/YOah+eLvjmLhqU9J+wfLRbR5cnRz4OdZLJqLkt7fKEFpvmpKZ9GshvNfZo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=AW3o6pIx; 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="AW3o6pIx" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 83EF9C4CEF0; Wed, 27 Aug 2025 14:28:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1756304915; bh=R8wXK7PeTJbktHXY+DELJQkVpFsI5h68rGGShOnYRDc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=AW3o6pIxbwwSpFEY0Kkv8Ct1t1K+AxlHyoZEsH9wAlt55xUfSZ2gMEuRiOJbsmihC Hk+BY7ffXTgQcOBFnIVIIm+0yU+NBSn8KnQpHWIw4XlW4IV7Pg2y4/UkHGy/7Mcq0k wFgwhIu3MJUh6YoNZH1qQoFIfgSrCcczD+SUcPMxJgMQNGwsCHYqt1TzrmaU5GwYhc zqXMMfTVztcbKvexKQKgnfPnwB2PT7EUwFQZKm0njJzrBMX48C+5N+0gXrW13tM9yr E9W+tbNTDEVogckO2xY8cTpTgs0gKmBI5uEzc60/suo4/HzXqYq0hV0lFlCVPNtPLN ytAp63MIr0XEw== From: Chuck Lever To: Cc: Chuck Lever Subject: [PATCH v1 03/26] terraform/azure: Remove tags from terraform configuration Date: Wed, 27 Aug 2025 10:27:58 -0400 Message-ID: <20250827142832.2629291-4-cel@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250827142832.2629291-1-cel@kernel.org> References: <20250827142832.2629291-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. 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