Ejercicios de Terraform
Pon a prueba tus conocimientos con quizzes interactivos y retos de código. Cada ejercicio incluye explicaciones detalladas para que aprendas de tus errores.
Inicia sesión para guardar tu progreso y ver estadísticas.
00:00
0/3
Progreso
0 de 3
1-4 elegir
Enter siguiente
H pista
1
Basico
¿Cómo se definen tipos complejos (list, map, object)?
variable "availability_zones" {
type = list(string)
}
variable "tags" {
type = map(string)
default = {
Environment = "dev"
}
}
variable "rds_config" {
type = object({
engine = string
version = string
size = number
})
}
0
Correctas
0
Incorrectas
0
Total
0:00
Tiempo
0% de acierto