forked from futurice/terraform-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
84 lines (66 loc) · 1.26 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
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
# Standard Variables
variable "aws_region" {
type = string
default = "us-east-1"
}
variable "aws-profile" {
description = "Local AWS Profile Name "
type = string
}
variable "environment" {
description = "AWS Environment"
type = string
}
variable "application" {
type = string
default = "acm"
}
# VPC Variables
variable "vpc_cidr" {
description = "VPC CIDR"
type = string
}
variable "private_subnet_cidrs" {
description = "Private subnet - CIDR"
type = list
}
variable "public_subnet_cidrs" {
description = "Private subnet - CIDR"
type = list
}
# MSK Cluster
variable "msk_cluster_version" {
type = string
default = "2.4.1.1"
}
variable "broker_nodes" {
default = 3
}
variable "msk_cluster_instance_type" {
type = string
default = "kafka.m5.large"
}
variable "msk_ebs_volume_size" {
default = 100
}
variable "encryption_type" {
type = string
default = "TLS_PLAINTEXT"
}
variable "monitoring_type" {
type = string
default = "PER_BROKER"
}
# MSK Client
variable "key_name" {
type = string
default = "MSK-Keypair"
}
variable "msk_instance_type" {
type = string
default = "m5.large"
}
variable "msk_ami" {
type = string
default = "ami-04d29b6f966df1537"
}