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 7B62B35A2B1 for ; Wed, 27 Aug 2025 14:28:40 +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=1756304920; cv=none; b=dvABuJCFmywGJHYpdISWrXs4Xcl5FthCxlTf1e8K7K0A4UZ9Yyjs8s8aZigaAHmjF+Ri6d/2AALaG+FSN7Nr51mPWKmv6+n+FxUvBwfhjs40SlX1O3WgGBfQE8BvO82Ts7MfapYZLoL/GSUQBxyzEbPKhvjcgnl43nJFQJS13BY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756304920; c=relaxed/simple; bh=jYLgFqGmuS4K9EkxPiU56SwYfV/kQHRzGfGJzXO1pTg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=agq+BENrTBpURZyMD29qHepkkkYMziMewDkqrkicfJjcp5Q62VmyiZDajefi4Nmn6XXy7A+qLb8MK/u4Dd3vyOFBdn4DnMYVqtLwEDli7DNU+SJawwq28C5kKj/zLBo4MwCP0C2J3aAtPS5KIGOE1RyUC4NCf92ely6TOToqVVY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Co6EVxNc; 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="Co6EVxNc" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D75DBC4CEEB; Wed, 27 Aug 2025 14:28:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1756304920; bh=jYLgFqGmuS4K9EkxPiU56SwYfV/kQHRzGfGJzXO1pTg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Co6EVxNc482H5lAl+ioKx2xNQ582axsxFZaI6EPayeBuU5qwwH4PspAtZi3aSJ3w7 DtUoeN87wWWaGKswaxB4LkiM/1GtbF9Ii5HhagedCYswAiCIsU/O8CpplLh8LpAnlN S2HyoQOPMXJ1dnx6mryLSXeAJCr80zf5eN7CmIovvDpkpiGR5jPShTuAMREfAu4wR2 0hXxN+a4wqz064BRfrFyzirI/bepTloXNbEw9sAebYPUVo/mqpH7PQDRR21yPyJYpr S6AGAtu7SWPn8Vb45EytZn31nZtY3z9Z3ToTNj498XesQL8AgGLlBMri5ppbFHqcJl QRscwZ+n1X0MA== From: Chuck Lever To: Cc: Chuck Lever Subject: [PATCH v1 13/26] terraform/aws: Remove unused terraform tags Date: Wed, 27 Aug 2025 10:28:08 -0400 Message-ID: <20250827142832.2629291-14-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. 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