-
Notifications
You must be signed in to change notification settings - Fork 1
/
variable.tf
65 lines (49 loc) · 1023 Bytes
/
variable.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
65
variable "account_id" {
type = map(string)
default = {
"notprod" = "483846886818"
"prod" = "337779336338"
}
}
variable "peeringvpc_id" {
}
variable "haproxy_private_ip" {
}
variable "haproxy_private_ip2" {
}
variable "haproxy_subnet_cidr_block" {
}
variable "log_archive_s3_bucket" {
}
variable "s3_bucket_name" {
}
variable "s3_bucket_acl" {
}
variable "route_table_id" {
}
variable "naming_suffix" {
default = false
description = "Naming suffix for tags, value passed from dq-tf-apps"
}
variable "key_name" {
default = "test_instance"
}
variable "s3_bucket_visibility" {
default = "private"
}
variable "name_prefix" {
default = "dq-peering-"
}
variable "service" {
default = "dq-peering-haproxy"
description = "As per naming standards in AWS-DQ-Network-Routing 0.5 document"
}
variable "az" {
default = "eu-west-2a"
}
variable "namespace" {
}
variable "SGCIDRs" {
description = "Ingress CIDR block for the HAProxy Security Group."
type = list(string)
}