generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoutputs.tf
18 lines (15 loc) · 789 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
########################################################################################################################
# Outputs
########################################################################################################################
output "domain_mapping_id" {
description = "The ID of the created code engine domain mapping."
value = resource.ibm_code_engine_domain_mapping.ce_domain_mapping.domain_mapping_id
}
output "id" {
description = "The unique identifier of the created code engine domain mapping."
value = resource.ibm_code_engine_domain_mapping.ce_domain_mapping.id
}
output "name" {
description = "The name of the created code engine domain mapping."
value = resource.ibm_code_engine_domain_mapping.ce_domain_mapping.name
}