-
Notifications
You must be signed in to change notification settings - Fork 10
/
outputs.tf
30 lines (25 loc) · 999 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
########################################################################################################################
# Outputs
########################################################################################################################
#
# Developer tips:
# - Below are some good practise sample outputs
# - They should be updated for outputs applicable to the module being added
# - Use variable validation when possible
#
output "account_id" {
description = "An alpha-numeric value identifying the account ID."
value = ibm_resource_instance.cos_instance.account_id
}
output "guid" {
description = "The GUID of the resource instance."
value = ibm_resource_instance.cos_instance.account_id
}
output "id" {
description = "The unique identifier of the resource instance."
value = ibm_resource_instance.cos_instance.id
}
output "crn" {
description = "The CRN of the resource instance."
value = ibm_resource_instance.cos_instance.crn
}