forked from sysdiglabs/terraform-aws-secure-for-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
42 lines (35 loc) · 1.13 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
#---------------------------------
# optionals - with default
#---------------------------------
variable "name" {
type = string
description = "The name of the IAM Role that will be created."
default = "sfc-cloudbench"
}
variable "is_organizational" {
type = bool
default = false
description = "whether secure-for-cloud should be deployed in an organizational setup"
}
variable "region" {
type = string
default = "eu-central-1"
description = "Default region for resource creation in organization mode"
}
variable "benchmark_regions" {
type = list(string)
description = "List of regions in which to run the benchmark. If empty, the task will contain all aws regions by default."
default = []
}
variable "provision_in_management_account" {
type = bool
default = true
description = "Whether to deploy the stack in the management account"
}
variable "tags" {
type = map(string)
description = "sysdig secure-for-cloud tags. always include 'product' default tag for resource-group proper functioning"
default = {
"product" = "sysdig-secure-for-cloud"
}
}