You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: released/discovery_center/mission_3680/step1/README.md
+13-9Lines changed: 13 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff 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
2
2
3
3
## Overview
4
4
@@ -18,27 +18,31 @@ The setup comprises the following resources:
18
18
19
19
To deploy the resources you must:
20
20
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.
22
22
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
24
29
25
30
> ⚠ 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]`.
26
31
27
-
3. Execute the apply.sh script.
28
32
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:
30
34
31
35
```bash
32
36
terraform init
33
37
```
34
38
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:
36
40
37
41
```bash
38
-
terraform plan -var-file="samples.tfvars"
42
+
terraform plan -var-file="sample.tfvars"
39
43
```
40
44
41
-
6. Apply your configuration to provision the resources:
45
+
5. Apply your configuration to provision the resources:
42
46
43
47
```bash
44
48
terraform apply -var-file="samples.tfvars"
@@ -50,4 +54,4 @@ You probably want to remove the assets after trying them out to avoid unnecessar
0 commit comments