diff mbox series

[RFC,07/31] terraform/OCI: Add a "Networking" Kconfig submenu

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

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
---
 terraform/oci/Kconfig                  | 18 +++---------------
 terraform/oci/kconfigs/Kconfig.network | 14 ++++++++++++++
 2 files changed, 17 insertions(+), 15 deletions(-)
 create mode 100644 terraform/oci/kconfigs/Kconfig.network
diff mbox series

Patch

diff --git a/terraform/oci/Kconfig b/terraform/oci/Kconfig
index c0b820f2cc43..566442868a8b 100644
--- a/terraform/oci/Kconfig
+++ b/terraform/oci/Kconfig
@@ -9,23 +9,11 @@  endmenu
 menu "Storage"
 source "terraform/oci/kconfigs/Kconfig.storage"
 endmenu
+menu "Network"
+source "terraform/oci/kconfigs/Kconfig.network"
+endmenu
 menu "Identity & Access"
 source "terraform/oci/kconfigs/Kconfig.identity"
 endmenu
 
-config TERRAFORM_OCI_ASSIGN_PUBLIC_IP
-	bool "Assign public IP address to the cloud instance"
-	default y
-	help
-          Select this field if public IP address has to be assigned to
-          the cloud instance. Otherwise a public IP address is
-          assigned.
-
-config TERRAFORM_OCI_SUBNET_OCID
-	string "OCI Subnet OCID"
-	help
-	  The OCI ID of the subnet.
-	  Read this:
-	  https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformproviderconfiguration.htm
-
 endif # TERRAFORM_OCI
diff --git a/terraform/oci/kconfigs/Kconfig.network b/terraform/oci/kconfigs/Kconfig.network
new file mode 100644
index 000000000000..ab1914c6f6a6
--- /dev/null
+++ b/terraform/oci/kconfigs/Kconfig.network
@@ -0,0 +1,14 @@ 
+config TERRAFORM_OCI_ASSIGN_PUBLIC_IP
+	bool "Assign public IP address to the cloud instance"
+	default y
+	help
+	  Select this field if public IP address has to be assigned to
+	  the cloud instance. Otherwise a public IP address is
+	  assigned.
+
+config TERRAFORM_OCI_SUBNET_OCID
+	string "OCI Subnet OCID"
+	help
+	  The OCI ID of the subnet.
+	  Read this:
+	  https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformproviderconfiguration.htm