Skip to content

Commit bf06779

Browse files
committed
chore: update documentation fixes
1 parent 475f707 commit bf06779

File tree

2 files changed

+23
-5
lines changed

2 files changed

+23
-5
lines changed

released/SAP-Inside-Tracks/SITBLR_MAR_2025/exercises/EXERCISE1/README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ variable "idp" {
6262
variable "region" {
6363
type = string
6464
description = "The region where the project account shall be created in."
65-
default = "eu10"
65+
default = "ap10"
6666
}
6767
variable "project_name" {
6868
type = string
@@ -123,7 +123,7 @@ variable "bas_plan" {
123123
variable "cf_landscape_label" {
124124
type = string
125125
description = "The region where the project account shall be created in."
126-
default = "cf-eu10"
126+
default = "cf-ap10"
127127
}
128128
variable "cf_plan" {
129129
type = string
@@ -178,9 +178,7 @@ cf_plan = "standard"
178178
cf_org_user = ["[email protected]"]
179179
cf_space_developers = ["[email protected]"]
180180
```
181-
The SAP BTP Global Account Subdomain can be found in the SAP BTP Cockpit.
182-
183-
As all bits and pieces are in place we can now create the subaccount configuration.
181+
The SAP BTP Global Account Subdomain can be found in the [SAP BTP Cockpit](https://apac.cockpit.btp.cloud.sap/cockpit/?idp=aviss4yru.accounts.ondemand.com#/globalaccount/6378f0c6-1b1e-4b10-8517-171cbec05c3e). Update fields with your user details.
184182

185183
- Open `main.tf` file and add the following content
186184

released/SAP-Inside-Tracks/SITBLR_MAR_2025/exercises/EXERCISE2/README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,26 @@ Pre-requisites:
1414
```
1515
You should see below output.
1616

17+
## Exporting environment variables
18+
19+
The last step in the setup is the export of the environment variables that are required to function BTP Terraform Exporter. For that export the following environment variables:
20+
21+
- Windows:
22+
23+
```pwsh
24+
$env:BTP_GLOBALACCOUNT=<your SAP BTP Global Account subdomain>
25+
$env:BTP_CLI_SERVER_URL="https://cpcli.cf.eu10.hana.ondemand.com"
26+
$env:CF_API_URL="https://api.cf.ap10.hana.ondemand.com"
27+
```
28+
29+
- Linux/MacOS/GitHub Codespaces:
30+
31+
```bash
32+
export BTP_GLOBALACCOUNT=<your SAP BTP Global Account subdomain>
33+
export BTP_CLI_SERVER_URL="https://cpcli.cf.eu10.hana.ondemand.com"
34+
export CF_API_URL="https://api.cf.ap10.hana.ondemand.com"
35+
```
36+
1737
<img width="800px" src="assets/btptfhelp.png" alt="btptf help">
1838
1939
- If exporter is not avaialble, Go to [Setup Terraform Exporter](https://sap.github.io/terraform-exporter-btp/install/)

0 commit comments

Comments
 (0)