Skip to content

Commit 62ad18a

Browse files
committed
chore: adding tfvars to gitignore
chore: adding tfvars to gitignore
1 parent 7c85b44 commit 62ad18a

File tree

2 files changed

+46
-1
lines changed

2 files changed

+46
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ yarn-error.log*
1616
.angular/
1717

1818
.terraform
19-
.terraform.lock.hcl
19+
*.tfvars
20+
.terraform.lock.hcl
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
parent_id = "99f8ad5f-255e-46a5-a72d-f6d652c90525"
2+
globalaccount = "meshcloudgmbh"
3+
#workspace_identifier = "sapbtp"
4+
project_identifier = "testsubaccount"
5+
subfolder = "test"
6+
users = [
7+
{
8+
meshIdentifier = "identifier1"
9+
username = "[email protected]"
10+
firstName = "test"
11+
lastName = "user"
12+
13+
14+
roles = ["admin", "user"]
15+
},
16+
17+
{
18+
meshIdentifier = "identifier2"
19+
username = "[email protected]"
20+
firstName = "test"
21+
lastName = "user"
22+
23+
24+
roles = ["admin"]
25+
}
26+
]
27+
cloudfoundry_instance = {
28+
name = "cf-dev"
29+
plan_name = "standard"
30+
}
31+
entitlements = [
32+
{
33+
service_name = "build-code"
34+
plan_name = "free"
35+
}
36+
]
37+
38+
subscriptions = [
39+
{
40+
app_name = "build-code"
41+
plan_name = "free"
42+
parameters = {}
43+
}
44+
]

0 commit comments

Comments
 (0)