Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions solutions/fully-configurable/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,18 @@ output "kms_key_crn" {
description = "The CRN of the KMS key used to encrypt the COS bucket"
value = local.kms_key_crn
}

output "next_steps_text" {
value = "Your Cloud Log Instance is ready."
description = "Next steps text"
}

output "next_step_primary_label" {
value = "Go to Cloud Log Instance"
description = "Primary label"
}

output "next_step_primary_url" {
value = local.create_cloud_logs ? "https://cloud.ibm.com/observability/logging/${module.cloud_logs[0].guid}/overview" : "https://cloud.ibm.com/observability/logging/${element(split(":", var.existing_cloud_logs_crn), 7)}/overview"
description = "Primary URL for the IBM Cloud Logs instance"
}
15 changes: 15 additions & 0 deletions solutions/security-enforced/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,18 @@ output "kms_key_crn" {
description = "The CRN of the KMS key used to encrypt the COS bucket"
value = module.security_enforced.kms_key_crn
}

output "next_steps_text" {
value = "Your Cloud Log Instance is ready."
description = "Next steps text"
}

output "next_step_primary_label" {
value = "Go to Cloud Log Instance"
description = "Primary label"
}

output "next_step_primary_url" {
value = module.security_enforced.next_step_primary_url
description = "Primary URL for the IBM Cloud Logs instance"
}