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 3CACE2417D9 for ; Thu, 4 Sep 2025 15:15: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=1756998935; cv=none; b=JfT/zqkOz6GdVMoYYASwRUQZVSWBRrSgBlIqiVDYvMVesqs4C85ECDBaG2RVuMsF3Y7Nd5YVC56gHiavk1l7ShWmIop3CxwVFKccrVHLXy32oM4mhFM4XgAIzaCgCk3hIHAH/sDGPSC+KxIc3wje5uBFjLki0vWhbP8o38T3QQc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756998935; c=relaxed/simple; bh=AnFXq+IBAR59hv2yLzj/mddnmelLIN95VdsUOVNOZUk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Jec7k0Y8X3uCzx0gWZJiHsTsbRIHJEVALbaxlpWuRX4Z3akprB9v2rFdkpf8RKsQ+KdQ8xHIB8SGrXZDCg2IhRxEBq/jx631BTyq0HpfiF2WjwI6sbnnSW+0H75CAKPdQIxZ/plA1qyq6gTX6R0B6lpto3tV7oCRccCaDRL3cJE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Jmbe0Pbh; 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="Jmbe0Pbh" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C138CC4CEF7; Thu, 4 Sep 2025 15:15:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1756998935; bh=AnFXq+IBAR59hv2yLzj/mddnmelLIN95VdsUOVNOZUk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Jmbe0PbhJlnBVmOTRWzZAaaEa80xNGHiPViOMUrrmD3Z4mzxVib2uHaalRtzht6iM d58PCWU9VxfgAyyQwD6Bu/945n7pKGs1P/2Xhf5LLaDW+Kju1c0RH4x8PF+5kWp0GQ C1rS4EIl9PkMRMFvNJzNFhZ4hiAKKDlwteK2RliKycFrsNgwd2GQRk1IV6MXmPA05x 3vAthgWYmBDIpwSbwVHIbAxffO4eG6jMW5DOL6xH90gWG/m+M5jNhN+JbUwpGcG9Eo 2pQ9EiluUgnIg1n8cgHfLJ+aaxfRY5sWqKI1i8VbuMk4IeymlzYBv3YIO2CCPGEUyS uugw/K8/FTLTQ== From: Chuck Lever To: Cc: Chuck Lever , Luis Chamberlain Subject: [PATCH v3 13/36] terraform/aws: Remove unused terraform tags Date: Thu, 4 Sep 2025 11:15:01 -0400 Message-ID: <20250904151526.1596282-14-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. Reviewed-by: Luis Chamberlain Signed-off-by: Chuck Lever --- terraform/aws/main.tf | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/terraform/aws/main.tf b/terraform/aws/main.tf index 8b343484f1ab..82a936c77f01 100644 --- a/terraform/aws/main.tf +++ b/terraform/aws/main.tf @@ -15,9 +15,6 @@ resource "aws_vpc" "kdevops_vpc" { cidr_block = "10.0.0.0/16" enable_dns_hostnames = true enable_dns_support = true - tags = { - Name = "kdevops" - } } resource "aws_subnet" "kdevops_subnet" { @@ -132,10 +129,6 @@ resource "aws_instance" "kdevops_instance" { data.template_cloudinit_config.kdevops_config.*.rendered, count.index, ) - - tags = { - Name = element(var.kdevops_nodes, count.index), - } } module "kdevops_ebs_volumes" { @@ -158,9 +151,6 @@ resource "aws_eip" "kdevops_eip" { resource "aws_internet_gateway" "kdevops_gw" { vpc_id = aws_vpc.kdevops_vpc.id - tags = { - Name = "kdevops-gw" - } } resource "aws_route_table" "kdevops_rt" { @@ -169,9 +159,6 @@ resource "aws_route_table" "kdevops_rt" { cidr_block = "0.0.0.0/0" gateway_id = aws_internet_gateway.kdevops_gw.id } - tags = { - Name = "kdevops_rt" - } } resource "aws_route_table_association" "kdevops_rt_assoc" { -- 2.51.0