forked from SAP-samples/btp-cap-multitenant-saas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraform.tfvars
48 lines (36 loc) · 1.6 KB
/
terraform.tfvars
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# If you comment out the variables, the default values are taken defined in the variables.tf file
### --------------------------------- ###
### SaaS Provider environment details ###
### --------------------------------- ###
globacct = "sap-demo" # Global Account subdomain
username = "[email protected]" # Global Account Administrator e-mail
password = "abcd1234!?#+" # Global Account Administrator password
ias_host = "sap-demo.accounts.ondemand.com" # Custom IdP used for Applications
region = "eu10" # SAP BTP Region of solution
btp_cli = true # Execute BTP CLI commands
# Kyma
shootname = "a1b2c3" # Kyma Cluster Shootname
namespace = "susaas" # Kyma Cluster Namespace
# Cloud Foundry
org = "saas-provider" # Cloud Foundry Org
space = "susaas" # Cloud Foundry Space
### ----------------------------- ###
### Subscriber Subaccount details ###
### ----------------------------- ###
# Subaccount "${project}-{tenant}"
project = "susaas"
tenant = "example-org"
# Additional Subaccount Administrator (optional)
subaccount_admins = ["[email protected]"]
### -------------------- ###
### Subscription details ###
### -------------------- ###
# Subscription and Service details
app_name = "susaas"
app_plan = "trial"
api_name = "susaas-api"
api_plan = "trial"
# User details
saas_admins = ["[email protected]"]
saas_members = ["[email protected]"]
saas_extends = ["[email protected]"]