diff mbox series

[RFC,03/31] terraform/OCI: Add an "Identity & Access" submenu

Message ID 20250401010000.764234-4-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>

To follow the same topic organization as the web cloud console, move
the identity and access selectors into a submenu.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
---
 terraform/oci/Kconfig                   | 32 ++++---------------------
 terraform/oci/kconfigs/Kconfig.identity | 27 +++++++++++++++++++++
 2 files changed, 31 insertions(+), 28 deletions(-)
 create mode 100644 terraform/oci/kconfigs/Kconfig.identity
diff mbox series

Patch

diff --git a/terraform/oci/Kconfig b/terraform/oci/Kconfig
index 00f03163ed83..446a49e76b57 100644
--- a/terraform/oci/Kconfig
+++ b/terraform/oci/Kconfig
@@ -1,5 +1,9 @@ 
 if TERRAFORM_OCI
 
+menu "Identity & Access"
+source "terraform/oci/kconfigs/Kconfig.identity"
+endmenu
+
 config TERRAFORM_OCI_REGION
 	string "OCI Region"
 	help
@@ -7,34 +11,6 @@  config TERRAFORM_OCI_REGION
 	  Read this:
 	  https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformproviderconfiguration.htm
 
-config TERRAFORM_OCI_TENANCY_OCID
-	string "OCI tenant OCID"
-	help
-	  The OCI ID of the tenancy to use.
-	  Read this:
-	  https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformproviderconfiguration.htm
-
-config TERRAFORM_OCI_USER_OCID
-	string "OCI user OCID"
-	help
-	  The OCI ID of the user to use.
-	  Read this:
-	  https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformproviderconfiguration.htm
-
-config TERRAFORM_OCI_USER_PRIVATE_KEY_PATH
-	string "OCI user private key path"
-	help
-	  Path to the file containing the private key of the user.
-	  Read this:
-	  https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformproviderconfiguration.htm
-
-config TERRAFORM_OCI_USER_FINGERPRINT
-	string "OCI user fingerprint"
-	help
-	  Fingerprint for the key pair being used.
-	  Read this:
-	  https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformproviderconfiguration.htm
-
 config TERRAFORM_OCI_AVAILABLITY_DOMAIN
 	string "OCI availablity domain"
 	help
diff --git a/terraform/oci/kconfigs/Kconfig.identity b/terraform/oci/kconfigs/Kconfig.identity
new file mode 100644
index 000000000000..928c700d9bd4
--- /dev/null
+++ b/terraform/oci/kconfigs/Kconfig.identity
@@ -0,0 +1,27 @@ 
+config TERRAFORM_OCI_TENANCY_OCID
+	string "OCI tenant OCID"
+	help
+	  The OCI ID of the tenancy to use.
+	  Read this:
+	  https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformproviderconfiguration.htm
+
+config TERRAFORM_OCI_USER_OCID
+	string "OCI user OCID"
+	help
+	  The OCI ID of the user to use.
+	  Read this:
+	  https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformproviderconfiguration.htm
+
+config TERRAFORM_OCI_USER_PRIVATE_KEY_PATH
+	string "OCI user private key path"
+	help
+	  Path to the file containing the private key of the user.
+	  Read this:
+	  https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformproviderconfiguration.htm
+
+config TERRAFORM_OCI_USER_FINGERPRINT
+	string "OCI user fingerprint"
+	help
+	  Fingerprint for the key pair being used.
+	  Read this:
+	  https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformproviderconfiguration.htm