From 61dd9c9bf9ff82ab155b1e177a04b8a50828d69c Mon Sep 17 00:00:00 2001 From: Lorenzo Caggioni Date: Fri, 14 Jan 2022 08:36:42 +0100 Subject: [PATCH] Order variables alphabetically --- .../variables.tf | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/data-solutions/gcs-to-bq-with-least-privileges/variables.tf b/data-solutions/gcs-to-bq-with-least-privileges/variables.tf index 205bdfcd..fb1bb971 100644 --- a/data-solutions/gcs-to-bq-with-least-privileges/variables.tf +++ b/data-solutions/gcs-to-bq-with-least-privileges/variables.tf @@ -18,6 +18,18 @@ variable "billing_account" { type = string } +variable "data_eng_groups" { + description = "Groups with Service Account Tocken creator role on service accounts in the form 'USER/GROUP_EMAIL'." + type = list(string) + default = [] +} + +variable "data_eng_users" { + description = "Users with Service Account Tocken creator role on service accounts in the form 'USER/GROUP_EMAIL'." + type = list(string) + default = [] +} + variable "location" { description = "The location where resources will be deployed." type = string @@ -46,18 +58,6 @@ variable "ssh_source_ranges" { default = ["0.0.0.0/0"] } -variable "data_eng_groups" { - description = "Groups with Service Account Tocken creator role on service accounts in the form 'USER/GROUP_EMAIL'." - type = list(string) - default = [] -} - -variable "data_eng_users" { - description = "Users with Service Account Tocken creator role on service accounts in the form 'USER/GROUP_EMAIL'." - type = list(string) - default = [] -} - variable "vpc_ip_cidr_range" { description = "Ip range used in the subnet deployef in the Service Project." type = string