generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutputs.tf
38 lines (31 loc) · 1.14 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
########################################################################################################################
# Outputs
########################################################################################################################
output "account_id" {
description = "Account ID of the watsonx.governance instance."
value = local.account_id
}
output "id" {
description = "ID of the watsonx.governance instance."
value = local.watsonx_governance_id
}
output "crn" {
description = "The CRN of the watsonx.governance instance."
value = local.watsonx_governance_crn
}
output "guid" {
description = "The GUID of the watsonx.governance instance."
value = local.watsonx_governance_guid
}
output "name" {
description = "The name of the watsonx.governance instance."
value = local.watsonx_governance_name
}
output "plan_id" {
description = "The plan ID of the watsonx.governance instance."
value = local.watsonx_governance_plan_id
}
output "dashboard_url" {
description = "The dashboard URL of the watsonx.governance instance."
value = local.watsonx_governance_dashboard_url
}