diff mbox series

[RFC,30/31] terraform/OCI: Nit: alphabetize vars.tf

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

It's getting to be a large file. I find alphabetic order makes
it quicker to eyeball.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
---
 terraform/oci/vars.tf | 96 +++++++++++++++++++++----------------------
 1 file changed, 48 insertions(+), 48 deletions(-)
diff mbox series

Patch

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
-}