forked from GoogleCloudPlatform/security-response-automation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
26 lines (22 loc) · 823 Bytes
/
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
variable "automation-project" {
type = string
description = "Project ID where the Cloud Functions should be installed."
}
variable "findings-project" {
type = string
default = ""
description = "(Unused if `enable-scc-notification` is true) Project ID where Event Threat Detection security findings are sent to by the Security Command Center. Configured in the Google Cloud Console in Security > Threat Detection."
}
variable "organization-id" {
type = string
description = "Organization ID."
}
variable "folder-ids" {
type = list(string)
description = "Folder IDs on which to grant permission"
}
variable "enable-scc-notification" {
type = bool
default = true
description = "If true, create the notification config from SCC instead of Cloud Logging"
}