forked from sysdiglabs/terraform-aws-secure-for-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
51 lines (41 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
48
49
50
51
variable "sysdig_secure_api_token" {
sensitive = true
type = string
description = "Sysdig Secure API token"
}
variable "org_cloudvision_account_id" {
type = string
description = "the **account id within the organization** to be used as cloudvision account"
}
variable "org_cloudvision_account_region" {
type = string
description = "default cloudvision member account region for services provisioning"
}
# --------------------
# cloudtrail configuration
# --------------------
variable "cloudtrail_org_is_multi_region_trail" {
type = bool
default = true
description = "testing/economization purpose. true/false whether cloudtrail will ingest multiregional events"
}
variable "cloudtrail_org_kms_enable" {
type = bool
default = true
description = "testing/economization purpose. true/false whether s3 should be encrypted"
}
#---------------------------------
# optionals - with defaults
#---------------------------------
variable "sysdig_secure_endpoint" {
type = string
default = "https://secure.sysdig.com"
description = "Sysdig Secure API endpoint"
}
variable "tags" {
type = map(string)
description = "sysdig cloudvision tags"
default = {
"product" = "sysdig-cloudvision"
}
}