forked from cloudfoundry-attic/cf-mssql-broker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcf_mssql_broker_config.json
41 lines (38 loc) · 1.06 KB
/
cf_mssql_broker_config.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
{
"dbIdentifierPrefix": "cf-",
"listeningAddr": ":3000",
"logLevel": "debug",
"brokerCredentials": {
"username": "username",
"password": "password"
},
"serviceCatalog": [
{
"bindable": true,
"description": "Microsoft SQL Server service for application development and testing",
"id": "b6844738-382b-4a9e-9f80-2ff5049d512f",
"name": "mssql-dev",
"plans": [
{
"description": "Shared SQL Server",
"id": "fb740fd7-2029-467a-9256-63ecd882f11c",
"name": "default",
"metadata": {
"bullets": [],
"displayName": "Mssql"
}
}
],
"tags": ["mssql", "relational"]
}
],
"brokerGoSqlDriver": "odbc",
"brokerMssqlConnection": {
"server": "localhost\\sqlexpress",
"database": "master",
"driver": "{SQL Server Native Client 11.0}",
"trusted_connection": "yes"
},
"servedMssqlBindingHostname" : "192.168.1.10",
"servedMssqlBindingPort" : 1433
}