From patchwork Tue Apr 1 00:59:32 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chuck Lever X-Patchwork-Id: 14034251 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 629702E3371 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=1743469209; cv=none; b=beJr3kkYH0B/Oszxkgh+8A19Ml1XXUb24RyUFGcmwHwyqAlhrRKqk1uJmJBK4FjWAQpOCjqZQIxuDmNg+x14j/oFPavZ7ZPsMtm7YxbDwE1c2WieY0C+ly7MrI+Hjnm/05PWZRXspD2XS0cnLBgJn8DIoZssuff/N5wfu/lyw64= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1743469209; c=relaxed/simple; bh=XrmJ2tUhXn98wNZfahdSywCcoPgi0gt2EQVtq8vNgHo=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=DwxiVRIS1OxRgj/ZkYEUgsqbTBcK09bogejvXb8yBHsJEFU5zrgUWUuPfHgmSNQWYTMGiT7abUMSj5rGkWESPfismikcdpkW9fSQnwUJog554b+boz+lLKBPFhbzsms9pz5ebTGrvErQqu9PJlyJfj9x+TAdm0HH1UX105lecL0= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=X4CrYjA0; 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="X4CrYjA0" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E3982C4CEEB; Tue, 1 Apr 2025 01:00:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1743469209; bh=XrmJ2tUhXn98wNZfahdSywCcoPgi0gt2EQVtq8vNgHo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=X4CrYjA0ZkGvfMC8xNAzMXQU1RsN8CXgfLE3JbiBwQeOnrBbfdP5i6w9iTbufKc0F LQO0EW/d7mqBmgnfYUKz96g7kdQiNZ9JIB/OBj9yXjrfnC4DXHFACWVHf1cq1XwPUx DmqBAXtd1pI7ZbMzFycJXb6hssysYEJdt3VjL1qzriS/jOUMYf5ZjxlW7qVCP6QONA oyC2fh/YmVw10YMOaABX5BMhw+3FID54Gzi6wejq7Q2F4LDyohjExAjIuo+0J+O7d1 SdcG4UqkSuj7bjgiTI52x93en8R2+SD3NCkZr/QhTtTrwHgcvNF1zr35Waw6sVAdgf 7tGugffHIMxOA== From: cel@kernel.org To: Cc: Chandan Babu R , Chuck Lever Subject: [RFC PATCH 03/31] terraform/OCI: Add an "Identity & Access" submenu Date: Mon, 31 Mar 2025 20:59:32 -0400 Message-ID: <20250401010000.764234-4-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 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 --- 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 --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