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 2FEE127442 for ; Thu, 4 Sep 2025 15:15:34 +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=1756998934; cv=none; b=afP4vNkFWi81TQCBRLvnwuBG9qvbrd2Z6ZybutVE+dBR5ZFqKWB/Xd1LWaHbJ6+rgHgB0BhjLZb6K2tDQvv+Op7fmUxmlCdz2zmwK8bkzMqrP0ks7p+j5GQgDwLIHGc5jHoc7duIyV7wa+OkbC/uPUvWWf5BxijQvBtFTINudGY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756998934; c=relaxed/simple; bh=5m6vgqEMo5QMgMDc6rt1nBunvZohIUF/CC63e9iQ4dY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=oT+CbYFjNGJh0l1T/4hRGn1gFV04DGVlD2E+PaPlQZc106JjLoCswJHiu655P09j2BXl2MZABi+zoONYUedFQDcto3aBHd2dw8Qal8Qiba6EXC6+dO6qrs/koh64BSfdFL6dgu0HcaPVGRNnEAWP6GVm38Ta66m6nSQA4AIfm28= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Byt1sAyL; 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="Byt1sAyL" Received: by smtp.kernel.org (Postfix) with ESMTPSA id BFE98C4CEF8; Thu, 4 Sep 2025 15:15:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1756998934; bh=5m6vgqEMo5QMgMDc6rt1nBunvZohIUF/CC63e9iQ4dY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Byt1sAyLZAuuD47aNWCRdyQdlNWLbH3upx0uxYFZ7oGWGLF3c2DwN80l01UTHpBl7 pE7EBnqUycLTTYUKeYTJKql3RYWpJJ3bCEXCo/Gjy4jotlt6UxB/JLtdGPyoj66jGn rljflezlme5Z6AiFuAnyixMvhnfrTd1DfS2YVWbZeeztdwO603HFOobaiZmoAdA2O7 Gp6HwM+zn0ad3t6sRZpAJTGL49507N4IBK0FmtjQE1WWLoWUMvBjYI/AqOpMBvQgIE uaJDTYmZHFBoJudwgaYDGXj7rDqdQ3LUuKumglxsY/nMmn5kazzHFHCN9NkKFBb3BN rDX1vPAkyZNNg== From: Chuck Lever To: Cc: Chuck Lever , Luis Chamberlain Subject: [PATCH v3 11/36] terraform/aws: Fix zone selection for us_west1 Date: Thu, 4 Sep 2025 11:14:59 -0400 Message-ID: <20250904151526.1596282-12-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 The us_west1 region was missing its zone selection menu. Reviewed-by: Luis Chamberlain 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