generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
outputs.tf
43 lines (35 loc) · 1.18 KB
/
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
37
38
39
40
41
42
43
########################################################################################################################
# Outputs
########################################################################################################################
output "project_id" {
description = "ID of the created code engine project."
value = local.project_id
}
output "app" {
description = "Configuration of the created code engine app."
value = module.app
}
output "job" {
description = "Configuration of the created code engine job."
value = module.job
}
output "config_map" {
description = "Configuration of the created code engine config map."
value = module.config_map
}
output "secret" {
description = "Configuration of the created code engine secret."
value = module.secret
}
output "build" {
description = "Configuration of the created code engine build."
value = module.build
}
output "binding" {
description = "Configuration of the created code engine binding."
value = module.binding
}
output "domain_mapping" {
description = "Configuration of the created code engine domain maping."
value = module.domain_mapping
}