From patchwork Tue Apr 1 00:59:59 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chuck Lever X-Patchwork-Id: 14034279 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 A35E33C3C for ; Tue, 1 Apr 2025 01:00:25 +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=1743469225; cv=none; b=PhxKKmao3llY+dIoBy8/LMtwMa0y2jTmwf49kGHGxq6sHYBNhWKwRGh1c++ovhDlwzzV/xj8sBtKCXr2AMGzaqP+RyMCmj35cy75h4bw8C38mfMoFSugcM0fhL03/GdReCJM39s5YN5LMSIAmoTZkcfjJALGvtfWOPptBfmuEZ0= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1743469225; c=relaxed/simple; bh=bN5+0N0BOHhBT8n+dGoWQFeGZmNRWbctS1Yqa8sOh3c=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=IIi48LFXFgvMkQhkwlwXRdPSK+B+tTNub7m6UYfMIJ2oba4TQ/jVd2RAEXjUviUUiMTMcviBnhglU6yRhXSAIZFc7Y33HMqdtbHHdZBSwoZJPnBsGmCjfbqH45aVP8m7os2AwryW7HfQ+SHXNXuVotogWlHHMSQVGY5h97K3MAo= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=ZTQDmYto; 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="ZTQDmYto" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2917EC4CEEA; Tue, 1 Apr 2025 01:00:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1743469225; bh=bN5+0N0BOHhBT8n+dGoWQFeGZmNRWbctS1Yqa8sOh3c=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ZTQDmYto9Ote9FYkwiKl2GwsE88zPqSDTrCgsAyLnXW9+03ZUX9GSxDCg+NXksZP5 5BaA/F2p8Ih9BY2H2AhShc8V063s9VJloOYNt4vyRdyzlZtLS68/OBKYCZoAk/0bZ6 uW4J+xwt3JSah2oR/hpLVJeb7l2z0XlUMcJKI5CoidkGrPiUSUascf8Jekg0IzqgIO LvU25hQOH3EBlHLDPpCA3ThjaRRdp8D5F7Y+DnBgcgXalICDCWIM8agrLEGKvXlQii fzn84fBl9cz6auNa9oJ36N65mYnQzP/kZfq0BfLkKQnxP5i0O98bLnJkaVSEdAl++m XovAhxzumOKMw== From: cel@kernel.org To: Cc: Chandan Babu R , Chuck Lever Subject: [RFC PATCH 30/31] terraform/OCI: Nit: alphabetize vars.tf Date: Mon, 31 Mar 2025 20:59:59 -0400 Message-ID: <20250401010000.764234-31-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 It's getting to be a large file. I find alphabetic order makes it quicker to eyeball. Signed-off-by: Chuck Lever --- terraform/oci/vars.tf | 96 +++++++++++++++++++++---------------------- 1 file changed, 48 insertions(+), 48 deletions(-) diff --git a/terraform/oci/vars.tf b/terraform/oci/vars.tf index 225ebdf51648..f2b7a6e69000 100644 --- a/terraform/oci/vars.tf +++ b/terraform/oci/vars.tf @@ -3,21 +3,69 @@ variable "oci_ad_number" { type = number } +variable "oci_assign_public_ip" { + description = "Assign public IP to the instance" + type = bool +} + variable "oci_compartment_name" { description = "Name of compartment in which to create resources" type = string } +variable "oci_data_volume_device_file_name" { + description = "Data volume's device file name" + type = string +} + +variable "oci_instance_flex_memory_in_gbs" { + default = null + description = "The total amount of memory available to the instance, in gigabytes." + type = number +} + +variable "oci_instance_flex_ocpus" { + default = null + description = "The total number of OCPUs available to the instance." + type = number +} + +variable "oci_os_image_ocid" { + description = "OCID of OS image" + type = string +} + variable "oci_region" { description = "An OCI region" type = string } +variable "oci_shape" { + description = "Shape name" + type = string +} + +variable "oci_sparse_volume_device_file_name" { + description = "Sparse volume's device file name" + type = string +} + +variable "oci_subnet_ocid" { + default = null + description = "Subnet OCID" + type = string +} + variable "oci_tenancy_ocid" { description = "OCID of your tenancy" type = string } +variable "oci_user_fingerprint" { + description = "Fingerprint for the key pair being used" + type = string +} + variable "oci_user_ocid" { description = "OCID of the user calling the API" type = string @@ -28,44 +76,6 @@ variable "oci_user_private_key_path" { type = string } -variable "oci_user_fingerprint" { - description = "Fingerprint for the key pair being used" - type = string -} - -variable "oci_shape" { - description = "Shape name" - type = string -} - -variable "oci_instance_flex_ocpus" { - default = null - description = "The total number of OCPUs available to the instance." - type = number -} - -variable "oci_instance_flex_memory_in_gbs" { - default = null - description = "The total amount of memory available to the instance, in gigabytes." - type = number -} - -variable "oci_os_image_ocid" { - description = "OCID of OS image" - type = string -} - -variable "oci_assign_public_ip" { - description = "Assign public IP to the instance" - type = bool -} - -variable "oci_subnet_ocid" { - default = null - description = "Subnet OCID" - type = string -} - variable "oci_use_existing_vcn" { description = "Use a pre-existing VCN" type = bool @@ -80,13 +90,3 @@ variable "oci_volumes_size" { description = "The size of additional block volumes, in gibibytes" type = number } - -variable "oci_data_volume_device_file_name" { - description = "Data volume's device file name" - type = string -} - -variable "oci_sparse_volume_device_file_name" { - description = "Sparse volume's device file name" - type = string -}