Skip to content

remove unwanted outputs #210

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 27, 2024
Merged
Changes from all 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
39 changes: 39 additions & 0 deletions released/discovery_center/mission_3585/outputs.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
output "globalaccount" {
value = var.globalaccount
description = "The Global Account subdomain."
}

output "cli_server_url" {
value = var.cli_server_url
description = "The BTP CLI server URL."
}

output "subaccount_id" {
value = btp_subaccount.dc_mission.id
description = "The Global Account subdomain id."
}

output "cf_api_endpoint" {
value = jsondecode(btp_subaccount_environment_instance.cf.labels)["API Endpoint"]
description = "The Cloudfoundry API endpoint."
}

output "cf_org_id" {
value = jsondecode(btp_subaccount_environment_instance.cf.labels)["Org ID"]
description = "The Cloudfoundry org id."
}

output "cf_org_name" {
value = jsondecode(btp_subaccount_environment_instance.cf.labels)["Org Name"]
description = "The Cloudfoundry org name."
}

output "custom_idp" {
value = var.custom_idp
description = "The custom identity provider."
}

output "cf_org_admins" {
value = var.cf_org_admins
description = "List of users to set as Cloudfoundry org administrators."
}