-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
87 lines (66 loc) · 1.14 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
85
86
87
variable "region" {
description = "AWS region"
type = string
}
variable "tags" {
description = "VPC tags"
type = map(string)
}
variable "cidr" {
description = "VPC CIDR"
type = string
}
variable "public_subnet_cidr" {
description = "Public Subnet CIDR"
}
variable "public_subnet_tags" {
description = "Public Subnet tags"
type = map(string)
}
variable "private_subnet_cidr" {
description = "Private Subnet CIDR"
}
variable "private_subnet_tags" {
description = "Private Subnet tags"
type = map(string)
}
variable "igw_tags" {
description = "Internet Gateway tags"
type = map(string)
}
variable "igw_rt_tags" {
}
variable "key_pair_name" {
}
variable "key_pair" {
}
variable "ami_name" {
}
variable "instance_type" {
}
variable "ec2_tags" {
}
variable "ec2_volume" {
}
variable "public_ec2" {
}
variable "private_ec2" {
}
variable "nat_rt_tags" {
}
variable "availability_zone" {
}
variable "eks_creation" {
}
variable "cluster_name" {
}
variable "ng1_name" {
}
variable "eks_version" {
}
variable "ng_disk_size" {
}
variable "ng_instance_type" {
}
variable "ec2_iam_role" {
}