From patchwork Tue Apr 1 00:59:36 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chuck Lever X-Patchwork-Id: 14034256 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 392E82AEFB for ; Tue, 1 Apr 2025 01:00:11 +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=1743469212; cv=none; b=Ulmri5uRklvBZ7IYAmethQNjPc/X0zrSYgVtzv5bSHSWPbvFdLbsEq8e5z/10BbezEdmabAPwBaBBbL2cjf2yW+mlWeR4Ml3ndBWVDDH7j5Exx7C8rK83MvbTbEkcB1wwhewN4yJWX3w7W8Qk9mMTnWQ/K0uyc1tIVezzc7xzxc= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1743469212; c=relaxed/simple; bh=DldgQLAbvc16IfPLycJkfglX2ZCQUwp3sYZoiRiw/nQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Ix9WVc+ItdZLFEWKd+9t4tv7Pz3S88mlPoHugJJ9PHJvmON04yfhZPogwqhKA8T+/o7KId6tFLGsS9Nxf6Xa6GrHd+lVqSQHZ/8o9/eoPXaXT29QmXRuJP3BKYw7y4Lax1HlpUaiW0fqWLL3wDAygihD1oElFhrSavFmO9JFQlI= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=TlBnNyiL; 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="TlBnNyiL" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 53F61C4CEE3; Tue, 1 Apr 2025 01:00:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1743469211; bh=DldgQLAbvc16IfPLycJkfglX2ZCQUwp3sYZoiRiw/nQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=TlBnNyiLv7IQHy6ndayiVedLK2slDvUQW1BK/AgH1cRdCiI9MdwV3pPpKOiHkOqJ5 cbRY0odIGkQi2fkT9zl7wPQZOjMEM6mB6pvBeFmZJOFd5f/njHIJuzgYwlX0vAv8ko 61EXe+/G77BOUi+pwW77scn6StRDehQK91w4OX6AdhloJ5tERmLV28air7tKAke6zd 7IzoDArVNXl4Hzcu7LNQ7mrqPLo1x5sTGJ5b/EdHc67EhiE4wGkQPyp36RiHQi1a/9 GkMM+2pUU/pkR8d04SvHmmx2vMQtDaUeSPilWDqoCpv3ZWmDHQFJAIOUu95z3F65TT zcB3FG42jGdgw== From: cel@kernel.org To: Cc: Chandan Babu R , Chuck Lever Subject: [RFC PATCH 07/31] terraform/OCI: Add a "Networking" Kconfig submenu Date: Mon, 31 Mar 2025 20:59:36 -0400 Message-ID: <20250401010000.764234-8-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 Signed-off-by: Chuck Lever --- 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 --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