-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
64 lines (50 loc) · 898 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
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
52
53
54
55
56
57
58
59
60
61
62
63
64
variable "organization" {
type = string
description = "The name of the organization managing these rulesets."
#default = "Acme Corporation"
}
variable "contract_name" {
type = string
description = "The name of these rulesets."
#default = "Cloud Contract v1.0"
}
variable "use_aws" {
default = false
}
variable "aws_target_id" {
default = ""
}
variable "aws_account_number" {
default = ""
}
variable "use_azure" {
default = false
}
variable "azure_target_id" {
default = ""
}
variable "azure_account_subscription" {
default = ""
}
variable "use_gcp" {
default = false
}
variable "gcp_target_id" {
default = ""
}
variable "gcp_project_id" {
default = ""
}
variable "dome9_access_id" {
default = ""
}
variable "dome9_secret_key" {
default = ""
}
variable "email_recipients" {
type = string
default = ""
}
variable "sns_topic_arn" {
default = ""
}