-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
47 lines (45 loc) · 1.27 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
42
43
44
45
46
47
variable "organization_id" {
description = "The ID of the organization where Forseti will be installed"
type = string
}
variable "project_id" {
description = "The ID of the project where Forseti will be installed"
type = string
}
variable "folder_id" {
description = "GCP Folder that the Forseti project will be deployed into"
default = ""
}
variable "gsuite_admin_email" {
description = "Google Workspace superadmin e-mail address"
}
variable "forseti_version" {
description = "The version of Forseti to install"
default = "v2.25.2"
}
variable "config_validator_enabled" {
description = "Enable Config Validator Forseti component"
type = bool
default = true
}
variable "enable_policy_enforcer" {
description = "Enable policy enforcer component"
type = bool
default = true
}
variable "vpc_host_project_id" {
description = "Project ID of the VPC host project. Leave empty if not using a shared VPC"
default = ""
}
variable "server_type" {
description = "GCE Forseti Server machine type"
default = "n1-standard-8"
}
variable "server_region" {
description = "GCE Forseti Server region"
default = "us-central1"
}
variable "cloudsql_region" {
description = "CloudSQL region"
default = "us-central1"
}