generated from cloud-native-toolkit/template-terraform-gitops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
36 lines (30 loc) · 948 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
35
36
output "name" {
description = "The name of the module"
value = local.name
depends_on = [null_resource.setup_gitops]
}
output "branch" {
description = "The branch where the module config has been placed"
value = local.application_branch
depends_on = [null_resource.setup_gitops]
}
output "namespace" {
description = "The namespace where the module will be deployed"
value = local.namespace
depends_on = [null_resource.setup_gitops]
}
output "server_name" {
description = "The server where the module will be deployed"
value = var.server_name
depends_on = [null_resource.setup_gitops]
}
output "layer" {
description = "The layer where the module is deployed"
value = local.layer
depends_on = [null_resource.setup_gitops]
}
output "type" {
description = "The type of module where the module is deployed"
value = local.type
depends_on = [null_resource.setup_gitops]
}