File tree Expand file tree Collapse file tree 3 files changed +28
-4
lines changed
released/discovery_center Expand file tree Collapse file tree 3 files changed +28
-4
lines changed Original file line number Diff line number Diff line change @@ -102,18 +102,18 @@ resource "cloudfoundry_service_instance" "abap_si" {
102
102
# ##
103
103
# Creation of service key for ABAP Development Tools (ADT)
104
104
# ##
105
- resource "cloudfoundry_service_credential_binding" "scb1 " {
105
+ resource "cloudfoundry_service_credential_binding" "abap_adt_key " {
106
106
type = " key"
107
- name = " ${ var . abap_sid } _adtkey "
107
+ name = " ${ var . abap_sid } _adt_key "
108
108
service_instance = cloudfoundry_service_instance. abap_si . id
109
109
}
110
110
111
111
# ##
112
112
# Creation of service key for COMM Arrangement
113
113
# ##
114
- resource "cloudfoundry_service_credential_binding" "abap_ipskey " {
114
+ resource "cloudfoundry_service_credential_binding" "abap_ips_key " {
115
115
type = " key"
116
- name = " ${ var . abap_sid } _ipskey "
116
+ name = " ${ var . abap_sid } _ips_key "
117
117
service_instance = cloudfoundry_service_instance. abap_si . id
118
118
parameters = jsonencode ({
119
119
scenario_id = " SAP_COM_0193"
Original file line number Diff line number Diff line change
1
+ output "abab_service_instance_id" {
2
+ value = cloudfoundry_service_instance. abap_si . id
3
+ description = " The ID of the ABAP service instance."
4
+ }
5
+
6
+ output "abap_dashboard_url" {
7
+ value = cloudfoundry_service_instance. abap_si . dashboard_url
8
+ description = " The URL of the ABAP service instance dashboard."
9
+ }
10
+
11
+ output "abab_adt_key_id" {
12
+ value = cloudfoundry_service_credential_binding. abap_adt_key . id
13
+ description = " The ID of the ABAP service key for ADT."
14
+ }
15
+
16
+ output "abab_ips_key_id" {
17
+ value = cloudfoundry_service_credential_binding. abap_ips_key . id
18
+ description = " The ID of the ABAP service key for COMM Arrangement."
19
+ }
Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ output "abab_trial_service_instance_id" {
3
3
description = " The ID of the ABAP service instance."
4
4
}
5
5
6
+ output "abap_trial_dashboard_url" {
7
+ value = cloudfoundry_service_instance. abap_trial . dashboard_url
8
+ description = " The URL of the ABAP Trial dashboard."
9
+ }
10
+
6
11
output "abab_trial_service_key_id" {
7
12
value = cloudfoundry_service_credential_binding. abap_trial_service_key . id
8
13
description = " The ID of the ABAP service key."
You can’t perform that action at this time.
0 commit comments