-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
115 lines (94 loc) · 2.13 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
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
### Variables globales ###
variable "profile" {
default = "default"
description = "Perfil de usuario"
}
variable "aws_region" {
default = "us-east-1"
description = "Region aplicar"
}
### Variables de Red ####
variable "vpc_cidr" {
#default = "172.16.0.0/16"
description = "CIDR de la VPC"
}
variable "public_subnet" {
#default = "172.16.1.0/24"
description = "Direccion de primer subred"
}
variable "public_subnet-2" {
#default = "172.16.2.0/24"
description = "Direccion de segunda subred"
}
variable "vpc_aws_az" {
#default = "us-east-1a"
description = "Zona de disponibilidad de aplicacion 1"
}
variable "vpc_aws_az-2" {
#default = "us-east-1b"
description = "Zona de disponibilidad de aplicacion 2"
}
variable "name_vpc" {
#default = "OBL-2023"
description = "Nombre VPC"
}
variable "tag_subnet1" {
type = string
description = "Tag Subnet"
}
variable "tag_subnet2" {
type = string
description = "Tag Subnet2"
}
variable "tag_igw" {
type = string
description = "Tag IGW"
}
variable "tag_tablarutas" {
type = string
description = "Tabla de rutas"
}
####Variables EKS ####
variable "nombre_cluster" {
type = string
description = "Nombre de EKS"
}
variable "tag_cluster" {
type = string
description = "Nombre del Cluster"
}
variable "nombre_clusterSG" {
type = string
description = "Nombre del Cluster"
}
variable "nombre_NodoSG" {
type = string
description = "Nombre del SG para el Nodo"
}
variable "tag_nodoSG" {
type = string
description = "Nombre del Cluster"
}
variable "tag_clusterSG" {
type = string
description = "Nombre del Cluster"
}
variable "nombre_grupoNodos" {
type = string
description = "Nombre del grupo de nodos"
}
variable "ami_typeNodos" {
type = string
#default = "BOTTLEROCKET_x86_64"
description = "Tipo de AMI para el Nodo"
}
variable "capacidadNodo" {
type = string
#default= "ON_DEMAND"
description = "Capacidad de los nodos"
}
variable "instancia_deNodo" {
type = string
#default = t3.medium
description = "Tipo de instancia para el Nodo"
}