Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Updated output variables (#12)
Browse files Browse the repository at this point in the history
* Updated output to explicitly-state username, and VPC ID.

Co-authored-by: Vidyasagar Machupalli <[email protected]>
  • Loading branch information
mikehollinger and VidyasagarMSC authored Apr 1, 2020
1 parent b0c4a5a commit 2bcc25f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,18 @@ output "vision_url" {
description = "IBM Visual Insights URL"
}

output "vision_username" {
value = "admin" # The admin always exists on first startup for trial editions of the application, so we hard-code it here for convenience of the user.
description = "IBM Visual Insights username"
}
output "vision_password" {
value = "${random_password.vision_password.result}"
description = "IBM Visual Insights 'admin' password"
description = "IBM Visual Insights password"
}

output "vpc_id" {
value = "${ibm_is_vpc.vpc.id}"
description = "ID of the VPC created for this application"
}

output "vision_debug_key" {
Expand Down

0 comments on commit 2bcc25f

Please sign in to comment.