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 A912835A2AC for ; Wed, 27 Aug 2025 14:28:39 +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=1756304919; cv=none; b=CvPqge5z4rnpwqcAWFs0LDrQu2FqhBqjxWqjzC0seyz/PHLRUsCpakaoPUn2qVYgCmIaeeJfjV/pPmxcR4THAA4vCs2+vEMjCP1Kp/o5L2Pcf+C0vN0G30TLyCwY1aF9gOH0g0/etfTg+FtKesoYdQkKjHzDDWVuJaGZa7yE7QU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756304919; c=relaxed/simple; bh=WvlQnJNBwH9yZ5+5pD9JJ79HKmgtjXneYeCkM36dp8M=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Oj8JAbZ4RemTENa6g+FR8o5LM06azI3CaEc4leydnqntyu0d2dhdWhhpl6QaDlxPERNf+pk3JFvix/Q3cLwh4KM/493rT5UqIInEPhqvHAMSTindsbhAH/XJKvNghIg9osIUbd+EeqcK7I99eBq56/BC32bIWKROTe1gQhNqbWU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=d66uNG2A; 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="d66uNG2A" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0480DC4CEF5; Wed, 27 Aug 2025 14:28:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1756304919; bh=WvlQnJNBwH9yZ5+5pD9JJ79HKmgtjXneYeCkM36dp8M=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=d66uNG2AeEidAYPUeACD+WQ9oGt9P/H7ra3cEpaWf10I5DCqXaA3+HaeLfhTYxMFF v+LN3n0y4r6wIRBKU5CLN7Jzwg4nmVIckv0nt5Pe78Pv+8wLc/Z51cHfFQ0dbC0QmA vREa73ImJQWntEPVDwBQGIDoGhnpodLvPvW8yrJdAbSeKktaCcSNVYCVtrMPt5+KQz miaFBrJbKd8GwMyhtFCglIq/4CACqq0n9iRkXv1MCc4x+WAduB1MLbHhMTzJ1+EGs0 N8NpIr42w0sBAA0wcTHfgaXMcNRQTi7uBeoU14EaJUW8WZK1pGHw/uyDxpD7xkEAxU CtrbGN4GcsDUQ== From: Chuck Lever To: Cc: Chuck Lever Subject: [PATCH v1 11/26] terraform/aws: Fix zone selection for us_west1 Date: Wed, 27 Aug 2025 10:28:06 -0400 Message-ID: <20250827142832.2629291-12-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 The us_west1 region was missing its zone selection menu. Signed-off-by: Chuck Lever --- terraform/aws/kconfigs/Kconfig.location | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/terraform/aws/kconfigs/Kconfig.location b/terraform/aws/kconfigs/Kconfig.location index b457166e0552..e5dacb9dd630 100644 --- a/terraform/aws/kconfigs/Kconfig.location +++ b/terraform/aws/kconfigs/Kconfig.location @@ -573,11 +573,11 @@ endchoice endif # TERRAFORM_AWS_REGION_US_EAST_2 -if TERRAFORM_AWS_REGION_US_WEST_2 +if TERRAFORM_AWS_REGION_US_WEST_1 choice prompt "AWS availability zone" - default TERRAFORM_AWS_AV_ZONE_US_WEST_2B + default TERRAFORM_AWS_AV_ZONE_US_WEST_1B help This option sets the AWS availablity zone to the specified value. If you wish to expand on this list send a patch after reading this @@ -591,6 +591,23 @@ config TERRAFORM_AWS_AV_ZONE_US_WEST_1B help This option selects the us-west-1b availability zone. +endchoice + +endif # TERRAFORM_AWS_REGION_US_WEST_1 + +if TERRAFORM_AWS_REGION_US_WEST_2 + +choice + prompt "AWS availability zone" + default TERRAFORM_AWS_AV_ZONE_US_WEST_2B + help + This option sets the AWS availablity zone to the specified value. + If you wish to expand on this list send a patch after reading this + list: + + https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html + https://gist.github.com/neilstuartcraig/0ccefcf0887f29b7f240 + config TERRAFORM_AWS_AV_ZONE_US_WEST_2B bool "us-west-2b" help -- 2.51.0