Skip to content

Commit bcf26d1

Browse files
feat: Added "Next steps" to the DA deployment (#251)
1 parent e550780 commit bcf26d1

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,33 @@
11
##############################################################################
22
# Outputs
33
##############################################################################
4+
##############################################################################
5+
# Monitoring and Workload Protection agent- Next Steps URLs outputs
6+
##############################################################################
7+
8+
output "next_steps_text" {
9+
value = "Your Monitoring agent is ready to send metrics to the instance."
10+
description = "Next steps text"
11+
}
12+
13+
output "next_step_primary_label" {
14+
value = "Go to Cloud Monitoring dashboard"
15+
description = "Primary label"
16+
}
17+
18+
output "next_step_primary_url" {
19+
value = "https://cloud.ibm.com/observability/embedded-view/monitoring/${element(split(":", var.instance_crn), 7)}"
20+
description = "Primary URL"
21+
}
22+
23+
output "next_step_secondary_label" {
24+
value = "Learn more about working with metrics"
25+
description = "Secondary label"
26+
}
427

28+
output "next_step_secondary_url" {
29+
value = "https://cloud.ibm.com/docs/monitoring?topic=monitoring-mng_metrics"
30+
description = "Secondary URL"
31+
}
532

633
##############################################################################

0 commit comments

Comments
 (0)