forked from SAP-samples/btp-setup-automator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup_kyma_free_tier.json
48 lines (48 loc) · 1.28 KB
/
setup_kyma_free_tier.json
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
{
"$schema": "https://raw.githubusercontent.com/SAP-samples/btp-setup-automator/main/libs/btpsa-usecase.json",
"aboutThisUseCase": {
"name": "Setup a Kyma environment on your productive SAP BTP account (Free Tier)",
"description": "This usecase contains the necessary configuration to setup a Kyma environment in your SAP BTP account (Free Tier).",
"author": "[email protected]",
"testStatus": "tested successfully",
"usageStatus": "READY TO BE USED"
},
"services": [
{
"category": "ENVIRONMENT",
"name": "kymaruntime",
"plan": "free",
"amount": 1,
"parameters": {
"name": "btp-auto-setup",
"region": "eu-central-1"
}
}
],
"assignrolecollections": [
{
"name": "Global Account Administrator",
"type": "account",
"level": "global account",
"assignedUserGroupsFromParameterFile": [
"admins"
]
},
{
"name": "Subaccount Administrator",
"type": "account",
"level": "sub account",
"assignedUserGroupsFromParameterFile": [
"admins"
]
},
{
"name": "Subaccount Service Administrator",
"type": "account",
"level": "sub account",
"assignedUserGroupsFromParameterFile": [
"admins"
]
}
]
}