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
# Accelerate Financial Planning and Analysis (3945)
2
+
3
+
## Overview
4
+
5
+
This sample shows how to create a landscape for the Discovery Center Mission "Accelerate Financial Planning and Analysis" - [Discovery Center Mission](https://discovery-center.cloud.sap/missiondetail/3945/),
6
+
7
+
## Setup
8
+
9
+
To deploy the resources you must:
10
+
11
+
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.
12
+
13
+
```bash
14
+
Mac & Linux
15
+
export BTP_USERNAME=<your_username>
16
+
export BTP_PASSWORD=<your_password>
17
+
18
+
Windows(PS)
19
+
$env:BTP_USERNAME=<your_username>
20
+
$env:BTP_PASSWORD=<your_password>
21
+
```
22
+
23
+
2. Change the variables in the `samples.tfvars` file to meet your requirements
24
+
25
+
> ⚠ 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
+
27
+
28
+
3. Initialize your workspace:
29
+
30
+
```bash
31
+
terraform init
32
+
```
33
+
34
+
4. You can check what Terraform plans to apply based on your configuration:
35
+
36
+
```bash
37
+
terraform plan -var-file="samples.tfvars"
38
+
```
39
+
40
+
5. Apply your configuration to provision the resources:
41
+
42
+
```bash
43
+
terraform apply -var-file="samples.tfvars"
44
+
```
45
+
46
+
## In the end
47
+
48
+
You probably want to remove the assets after trying them out to avoid unnecessary costs. To do so execute the following command:
0 commit comments