-
Notifications
You must be signed in to change notification settings - Fork 3
/
variables.tf
55 lines (45 loc) · 1.7 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
52
53
54
55
variable "region" {
description = "AWS Region, required only when being run as root module"
default = ""
}
variable "valtix_api_key_file" {
description = "Valtix API Key json file name downloaded from the Valtix Dashboard, required only when being run as root module"
default = ""
}
variable "deployment_name" {
description = "Valtix Controller deployment name (ask Valtix)"
default = "prod1"
}
variable "prefix" {
description = "Prefix for resources created in this template"
default = "valtix"
}
variable "controller_aws_account_number" {
description = "Valtix provided aws account number (ask Valtix)"
}
variable "s3_bucket" {
description = "Create S3 Bucket to store CloudTrail, Route53 Query Logs and VPC Flow Logs"
default = ""
}
variable "object_duration" {
description = "Duration (in days) after which the objects in the s3 bucket are deleted"
default = 1
}
variable "create_cloud_trail" {
description = "Create a multi region CloudTrail and store the events in the s3_bucket. If you already have a CloudTrail, then provide this value as false"
default = true
type = bool
}
variable "aws_credentials_profile" {
description = "AWS Credentials Profile Name, required only when run as root module"
default = ""
}
variable "valtix_aws_cloud_account_name" {
description = "Name used to represent this AWS Account on the Valtix Dashboard, if this is empty the AWS account is not added to the Valtix Controller"
default = ""
}
variable "inventory_regions" {
description = "Regions that Valtix Controller can monitor and update the inventory for dynamic security policies: us-east-1, us-east-2"
default = []
type = list(string)
}