generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
24 lines (20 loc) · 820 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
output "agent_id" {
description = "Schematics agent ID."
value = ibm_schematics_agent.schematics_agent_instance.id
}
output "agent_crn" {
description = "Schematics agent CRN."
value = ibm_schematics_agent.schematics_agent_instance.agent_crn
}
output "log_url" {
description = "URL to the full schematics agent deployment job logs."
value = ibm_schematics_agent_deploy.schematics_agent_deploy.log_url
}
output "status_code" {
description = "Final result of the schematics agent deployment job."
value = ibm_schematics_agent_deploy.schematics_agent_deploy.status_code
}
output "status_message" {
description = "The outcome of the schematics agent deployment job, in a formatted log string."
value = ibm_schematics_agent_deploy.schematics_agent_deploy.status_message
}