Order variables alphabetically

This commit is contained in:
Lorenzo Caggioni 2022-01-14 08:36:42 +01:00
parent 22298df2ef
commit 61dd9c9bf9
1 changed files with 12 additions and 12 deletions

View File

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