-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
56 lines (42 loc) · 1.08 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
56
variable "cidr_block" {
default = "10.0.1.0"
description = "The IP prefix to the CIDR block assigned to the VPC"
type = string
}
variable "enable" {
default = true
description = "Flag to control the VPC creation."
type = bool
}
variable "enable_flow_log" {
default = false
description = "Enable VPC flow logs."
type = bool
}
variable "name" {
default = "packer"
description = "The VPC name."
type = string
}
variable "namespace" {
default = "Engine9.io"
description = "The namespace can be your organization name or abbreviation."
type = string
}
variable "s3_bucket_arn" {
default = ""
description = "ARN of the S3 Bucket used to store the VPC flow logs."
sensitive = true
type = string
}
variable "stage" {
default = ""
description = "The stage, e.g. 'prod', 'staging', 'dev'"
sensitive = true
type = string
}
variable "traffic_type" {
default = "ALL"
description = "Type of traffic to capture. Valid values: ACCEPT, REJECT, ALL."
type = string
}