diff mbox series

[RFC,04/31] terraform/OCI: Add a "Resource location" submenu

Message ID 20250401010000.764234-5-cel@kernel.org (mailing list archive)
State New
Headers show
Series Simplify OCI configuration menu | expand

Commit Message

Chuck Lever April 1, 2025, 12:59 a.m. UTC
From: Chuck Lever <chuck.lever@oracle.com>

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 <chuck.lever@oracle.com>
---
 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 mbox series

Patch

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