-
Notifications
You must be signed in to change notification settings - Fork 2
/
variable.tf
138 lines (102 loc) · 2.51 KB
/
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
variable "account_id" {
type = map(string)
default = {
"notprod" = "483846886818"
"prod" = "337779336338"
}
}
variable "cidr_block" {
}
variable "vpc_subnet_cidr_block" {
}
variable "public_subnet_cidr_block" {
}
variable "ad_subnet_cidr_block" {
}
variable "az" {
}
variable "naming_suffix" {
}
variable "ad_aws_ssm_document_name" {
}
variable "ad_writer_instance_profile_name" {
}
variable "log_archive_s3_bucket" {
}
variable "namespace" {
}
variable "ops_config_bucket" {
}
variable "athena_maintenance_bucket" {
}
variable "vpc_peering_connection_ids" {
description = "Map of VPC peering IDs for the Ops route table."
type = map(string)
}
variable "route_table_cidr_blocks" {
description = "Map of CIDR blocks for the OPs private route table."
type = map(string)
}
variable "bastion_linux_ip" {
description = "Mock EC2 instance IP"
}
variable "bastions_windows_ip" {
description = "All Win bastion IP addresses"
}
variable "test_bastions_windows_ip" {
description = "Test Win bastion IP addresses"
}
variable "ad_sg_cidr_ingress" {
description = "List of CIDR block ingress to AD machines SG"
type = list(string)
}
variable "key_name" {
description = "Default SSH key name for EC2 instances"
default = "test_instance"
}
variable "athena_log_bucket" {
description = "Athena log bucket ARN"
}
variable "aws_bucket_key" {
description = "S3 bucket KMS key"
}
variable "tableau_deployment_ip" {
description = "Tableau Deployment IP address"
default = "10.0.0.1"
}
variable "tableau_subnet_cidr_block" {
description = "Tableau Dev CIDR block"
}
variable "dq_pipeline_ops_readwrite_database_name_list" {
description = "RW Database list from dq-tf-apps"
type = list(string)
}
variable "dq_pipeline_ops_readonly_database_name_list" {
description = "RO Database list from dq-tf-apps"
type = list(string)
}
variable "dq_pipeline_ops_readwrite_bucket_list" {
description = "RW Bucket list from dq-tf-apps"
type = list(string)
}
variable "dq_pipeline_ops_readonly_bucket_list" {
description = "RO Bucket list from dq-tf-apps"
type = list(string)
}
variable "apps_aws_bucket_key" {
description = "Apps KMS key"
}
variable "ops_config_acl" {
default = "private"
}
variable "athena_maintenance_acl" {
default = "private"
}
variable "data_archive_bucket_name" {
default = "s3-dq-data-archive-bucket"
}
variable "httpd_config_bucket_name" {
default = "s3-dq-httpd-config-bucket"
}
variable "management_access" {
}