Skip to content

Commit 2b14458

Browse files
authored
Update README.md
1 parent b80e2d5 commit 2b14458

File tree

1 file changed

+10
-9
lines changed
  • released/SAP-Inside-Tracks/SITBLR_DEC_2024/exercises/EXERCISE3

1 file changed

+10
-9
lines changed

released/SAP-Inside-Tracks/SITBLR_DEC_2024/exercises/EXERCISE3/README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -40,25 +40,26 @@ We define a complex variable type, which is a [list](https://developer.hashicorp
4040

4141
## Step 2: Add the variable to the tfvars file
4242

43-
Now we need to specify the entitlements we want to create to the `terraform.tfvars` file.
43+
Now we need to specify the entitlements we want to create to the `terraform.tfvars` file.
4444

45-
We want to add the following entitlements to the subaccount in SAP BTP Trial landscape:
46-
47-
- `sapappstudiotrial` application with the `trial` plan
48-
49-
Open the `terraform.tfvars` file and add the following code:
45+
If you are creating subaccount in **SAP BTP Trial landscape**, open the `terraform.tfvars` file and add the following code:
5046

5147
```terraform
5248
bas_service_name = "sapappstudiotrial"
5349
bas_plan = "trial"
5450
5551
bas_developers = ["[email protected]", "[email protected]"]
5652
```
53+
OR
5754

58-
If you are creating Subaccount in Live or Production landscapes such as `EU10`, `US10`, `AP10` etc ensure following entitlement is added to the subaccount.
59-
60-
- `sapappstudio` application with `standard-edition` plan
55+
If you are creating Subaccount in **Live or Production landscapes** such as `EU10`, `US10`, `AP10` etc, open the `terraform.tfvars` file and add the following code:
6156

57+
```terraform
58+
bas_service_name = "sapappstudio"
59+
bas_plan = "standard-edition"
60+
61+
bas_developers = ["[email protected]", "[email protected]"]
62+
```
6263

6364
## Step 3: Add the entitlements configuration
6465

0 commit comments

Comments
 (0)