From patchwork Tue Apr 1 00:59:33 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chuck Lever X-Patchwork-Id: 14034252 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 018A22E3371 for ; Tue, 1 Apr 2025 01:00:09 +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=1743469210; cv=none; b=Qejo7XVd1x82XseB+DiJ5+d+HzHBYCaBxdfZVanLJgb2yIqJR0R7RRjE0N99DdgddwiTNwcdP9SnYuT4jt7F1a/+Z7/m7PIsMngABJ5TngCOyPN0I3IE39nl+HeYMPxK7x5IYWHR+6WZfoCwvvX+dVxrM2ZMHEjuIe1o2By6imI= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1743469210; c=relaxed/simple; bh=nWSX0XX2kIgtOOLhssIvpFtOmLy02R6V8WFcOQl1GIA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=OL25xsPe2toOwxo8qWVhbXTuMLEDBNYib3kl/p5X3Jfb1Oh7V6TIfi+66bjswDj3NV4a+1wSaASGFhfzTG81SEsRNXDYvYKQp2xVDUl6z6P2HQLdHL+TXXMJ6cXxIrj8bvNz+Y5X6UoGHLXDaX9+HEgfx0BOtCb7J2ANbXELLeY= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=A9xb18B1; 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="A9xb18B1" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7FF2AC4CEEA; Tue, 1 Apr 2025 01:00:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1743469209; bh=nWSX0XX2kIgtOOLhssIvpFtOmLy02R6V8WFcOQl1GIA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=A9xb18B1d9ymc0KhcqZrCSZljmytlxJ8r3FOwDmk2n0RLbjh0vAuUfCIbDcIhblTx iAFbLb/ORP6Y/gW1gg8aWIdf89OjztdIraiYJWrt84YwLgXVRcPI89hvPvMPpmsGOL mA33ohXQIJTYSi5H4hwiCAROz3S9top0hwkk2e1sHMqUiSEYPVue98Mdf9ToYyO29D ZESvhF1EJzbV2vyY9udP0+XoeKfETVUZZ+xNuIK0vGiYyyglr2XnDwNV9juy2U1yeC OTXmOIOyIdNyrW1HDOpzQZ7rnnlBJZ2Fpww2kc4wY+N4XVpQBCDeCN7N7krG7rKlMq Cj6QCWHS9WAZg== From: cel@kernel.org To: Cc: Chandan Babu R , Chuck Lever Subject: [RFC PATCH 04/31] terraform/OCI: Add a "Resource location" submenu Date: Mon, 31 Mar 2025 20:59:33 -0400 Message-ID: <20250401010000.764234-5-cel@kernel.org> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250401010000.764234-1-cel@kernel.org> References: <20250401010000.764234-1-cel@kernel.org> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 From: Chuck Lever Introduce the strategy of moving these submenus to their own separate Kconfig files to eventually enable their generation by querying the provider with a script (similar to "make refs-default"). This would allow the Kconfig menu content to be adjusted based on the intersection of what is currently available on the provider platform and what is accessible to the tenant. Signed-off-by: Chuck Lever --- terraform/oci/Kconfig | 24 +++--------------------- terraform/oci/kconfigs/Kconfig.location | 20 ++++++++++++++++++++ 2 files changed, 23 insertions(+), 21 deletions(-) create mode 100644 terraform/oci/kconfigs/Kconfig.location diff --git a/terraform/oci/Kconfig b/terraform/oci/Kconfig index 446a49e76b57..31bd2ca617f6 100644 --- a/terraform/oci/Kconfig +++ b/terraform/oci/Kconfig @@ -1,30 +1,12 @@ if TERRAFORM_OCI +menu "Resource location" +source "terraform/oci/kconfigs/Kconfig.location" +endmenu menu "Identity & Access" source "terraform/oci/kconfigs/Kconfig.identity" endmenu -config TERRAFORM_OCI_REGION - string "OCI Region" - help - This option will set the OCI resource location. - Read this: - https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformproviderconfiguration.htm - -config TERRAFORM_OCI_AVAILABLITY_DOMAIN - string "OCI availablity domain" - help - The name of the availability domain. - Read this: - https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformproviderconfiguration.htm - -config TERRAFORM_OCI_COMPARTMENT_OCID - string "OCI compartment OCID" - help - The OCI ID of user's compartment. - Read this: - https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformproviderconfiguration.htm - config TERRAFORM_OCI_SHAPE string "OCI shape name" help diff --git a/terraform/oci/kconfigs/Kconfig.location b/terraform/oci/kconfigs/Kconfig.location new file mode 100644 index 000000000000..9e06aa9332f8 --- /dev/null +++ b/terraform/oci/kconfigs/Kconfig.location @@ -0,0 +1,20 @@ +config TERRAFORM_OCI_REGION + string "OCI Region" + help + This option will set the OCI resource location. + Read this: + https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformproviderconfiguration.htm + +config TERRAFORM_OCI_AVAILABLITY_DOMAIN + string "OCI availablity domain" + help + The name of the availability domain. + Read this: + https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformproviderconfiguration.htm + +config TERRAFORM_OCI_COMPARTMENT_OCID + string "OCI compartment OCID" + help + The OCI ID of user's compartment. + Read this: + https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformproviderconfiguration.htm