Skip to content

Commit f19d6da

Browse files
authored
QAS Polished 3680 and fix other fixes (#328)
1 parent 29d7cd1 commit f19d6da

File tree

11 files changed

+383
-145
lines changed

11 files changed

+383
-145
lines changed

released/discovery_center/mission_3680/step1/README.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Discovery Center Mission: Create a custom mobile app to extend HR capabilities (3680)
1+
# Discovery Center Mission: Create a custom mobile app to extend HR capabilities (3680) - Step 1
22

33
## Overview
44

@@ -18,27 +18,31 @@ The setup comprises the following resources:
1818

1919
To deploy the resources you must:
2020

21-
1. Export environment variables BTP_USERNAME, BTP_PASSWORD, CF_USER, and CF_PASSWORD with your username and password for the custom IdP of your global account.
21+
1. Set the environment variables BTP_USERNAME and BTP_PASSWORD to pass credentials to the BTP provider to authenticate and interact with your BTP environments.
2222

23-
2. Change the variables in the `samples.tfvars` file in the main folder to meet your requirements
23+
```bash
24+
export BTP_USERNAME=<your_username>
25+
export BTP_PASSWORD=<your_password>
26+
```
27+
28+
2. Change the variables in the `sample.tfvars` file to meet your requirements
2429

2530
> ⚠ NOTE: You should pay attention **specifically** to the users defined in the samples.tfvars whether they already exist in your SAP BTP accounts. Otherwise you might get error messages like e.g. `Error: The user could not be found: [email protected]`.
2631
27-
3. Execute the apply.sh script.
2832

29-
4. Verify e.g., in BTP cockpit that a new subaccount with a integration suite, SAP Business Application Studio, CF environment instance and a CF space have been created.
33+
3. Initialize your workspace:
3034

3135
```bash
3236
terraform init
3337
```
3438

35-
5. You can check what Terraform plans to apply based on your configuration:
39+
4. You can check what Terraform plans to apply based on your configuration:
3640

3741
```bash
38-
terraform plan -var-file="samples.tfvars"
42+
terraform plan -var-file="sample.tfvars"
3943
```
4044

41-
6. Apply your configuration to provision the resources:
45+
5. Apply your configuration to provision the resources:
4246

4347
```bash
4448
terraform apply -var-file="samples.tfvars"
@@ -50,4 +54,4 @@ You probably want to remove the assets after trying them out to avoid unnecessar
5054

5155
```bash
5256
terraform destroy -var-file="samples.tfvars"
53-
```
57+
```

released/discovery_center/mission_3680/step1/locals.tf

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)