generated from equinix-labs/terraform-equinix-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
outputs.tf
34 lines (25 loc) · 841 Bytes
/
outputs.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
# Module Project Setup Outputs
output "project_setup_outputs" {
description = "Outputs of the Project Setup module"
value = { for k, v in module.project_setup : k => v }
}
# Module Deploy Metal Outputs
output "deploy_metal_outputs" {
description = "Outputs of the Deploy Metal module"
value = { for k, v in var.eksa_config : k => v }
}
# Module Deploy EKSA Outputs
output "deploy_eksa_outputs" {
description = "Outputs of the Deploy EKSA module"
value = { for k, v in var.metal_config : k => v }
}
# Module Deploy K3s Outputs
output "deploy_k3s_outputs" {
description = "Outputs of the Deploy K3s module"
value = { for k, v in var.k3s_config : k => v }
}
# Module Deploy k8s Outputs
output "deploy_k8s_outputs" {
description = "Outputs of the Deploy k8s module"
value = { for k, v in var.k8s_config : k => v }
}