forked from sysdiglabs/terraform-google-secure-for-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
40 lines (34 loc) · 1.24 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
variable "location" {
type = string
default = "us-central1"
description = "Zone where the stack will be deployed"
}
variable "cloudconnector_deploy" {
type = bool
default = true
description = "Whether to deploy or not CloudConnector"
}
variable "cloudscanning_deploy" {
type = bool
default = true
description = "Whether to deploy or not CloudConnector"
}
variable "sysdig_secure_api_token" {
type = string
description = "Sysdig's Secure API Token"
}
variable "sysdig_secure_endpoint" {
type = string
default = "https://secure.sysdig.com"
description = "Sysdig Secure API endpoint"
}
variable "naming_prefix" {
type = string
description = "Naming prefix for all the resources created"
default = ""
}
variable "create_gcr_topic" {
type = bool
description = "Deploys a PubSub topic called `gcr` as part of this stack, which is needed for GCR scanning. Set to `true` if it doesn't exist yet. If this is not deployed, and no existing `gcr` topic is found, the GCR scanning is ommited and won't be deployed. For more info see [GCR PubSub topic](https://cloud.google.com/container-registry/docs/configuring-notifications#create_a_topic)."
default = true
}