-
Notifications
You must be signed in to change notification settings - Fork 3
/
variables.tf
41 lines (35 loc) · 1.06 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Organization ID to deploy to (if applicable)
variable "org_id" {
type = string
description = "The organization ID (numeric) that resources will be deployed within"
default = null
}
variable "parent_folder" {
type = string
description = "The Folder ID (numeric) that folders will be deployed within if not at the org root"
default = null
}
variable "folder_id" {
type = string
description = "The Folder ID (numeric) that projects will be deployed within if not automatically creating"
default = null
}
variable "main_folder_name" {
type = string
description = "The display name of the folder to be created"
default = "Test Infrastructure"
}
variable "billing_account" {
type = string
description = "Billing Account to attach to the projects created"
}
variable "region" {
type = string
description = "Default region to use for resources"
default = "us-east1"
}
variable "zone" {
type = string
description = "Default zone to use for resources"
default = "us-east1-b"
}