Skip to content

Commit 1863312

Browse files
committed
chore: test versions file
1 parent 13061c5 commit 1863312

File tree

1 file changed

+54
-0
lines changed
  • modules/sapbtp/subaccounts/buildingblock_import

1 file changed

+54
-0
lines changed
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
output "btp_subaccount_id" {
2+
value = "btp_subaccount.subaccount.id"
3+
}
4+
5+
# output "btp_subaccount_region" {
6+
# value = btp_subaccount.subaccount.region
7+
# }
8+
9+
# output "btp_subaccount_name" {
10+
# value = btp_subaccount.subaccount.name
11+
# }
12+
13+
# output "btp_subaccount_login_link" {
14+
# value = "https://emea.cockpit.btp.cloud.sap/cockpit#/globalaccount/${btp_subaccount.subaccount.parent_id}/subaccount/${btp_subaccount.subaccount.id}"
15+
# }
16+
17+
# output "entitlements" {
18+
# description = "Map of entitlements created for this subaccount"
19+
# value = {
20+
# for k, v in btp_subaccount_entitlement.entitlement :
21+
# k => {
22+
# service_name = v.service_name
23+
# plan_name = v.plan_name
24+
# amount = v.amount
25+
# }
26+
# }
27+
# }
28+
29+
# output "subscriptions" {
30+
# description = "Map of application subscriptions created in this subaccount"
31+
# value = {
32+
# for k, v in btp_subaccount_subscription.subscription :
33+
# k => {
34+
# app_name = v.app_name
35+
# plan_name = v.plan_name
36+
# state = v.state
37+
# }
38+
# }
39+
# }
40+
41+
# output "cloudfoundry_instance_id" {
42+
# description = "ID of the Cloud Foundry environment instance (if created)"
43+
# value = var.cloudfoundry_instance != null ? btp_subaccount_environment_instance.cloudfoundry[0].id : null
44+
# }
45+
46+
# output "cloudfoundry_instance_state" {
47+
# description = "State of the Cloud Foundry environment instance (if created)"
48+
# value = var.cloudfoundry_instance != null ? btp_subaccount_environment_instance.cloudfoundry[0].state : null
49+
# }
50+
51+
# output "trust_configuration_origin" {
52+
# description = "Origin key of the configured trust configuration (if configured)"
53+
# value = var.trust_configuration != null ? btp_subaccount_trust_configuration.custom_idp[0].origin : null
54+
# }

0 commit comments

Comments
 (0)