-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
46 lines (46 loc) · 1.1 KB
/
Copy pathconfig.example.json
File metadata and controls
46 lines (46 loc) · 1.1 KB
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
{
"gcp": {
"project_name": "YOUR_GCP_PROJECT_NAME",
"project_id": "YOUR_GCP_PROJECT_ID",
"region": "us-west4",
"zone": "us-west4-a"
},
"databases": {
"alloydb": {
"cluster_id": "alloydb-demo-cluster",
"instance_id": "alloydb-inst",
"database_name": "alloydb-demo-db",
"user": "demo-user"
},
"spanner": {
"instance_id": "spanner-demo-inst",
"database_id": "spanner-demo-db"
},
"bigquery": {
"dataset_id": "bq-demo"
},
"bigtable": {
"instance_id": "bq-demo-inst",
"table_id": "bq-table-id"
},
"firestore": {
"database_id": "(default)"
},
"memorystore": {
"host": "YOUR_REDIS_HOST_IP",
"port": 6379,
"ssl": true
},
"cloudsql": {
"instance_connection_name": "YOUR_GCP_PROJECT_ID:us-west4:cloudsql-demo",
"database_name": "cloudsql-demo-db",
"user": "demo-user",
"password": "YOUR_DATABASE_PASSWORD"
},
"dataplex": {
"lake_id": "dataplex-lake-id",
"zone_id": "us-west1-a",
"entry_group_id": "dataplex-entry-group-id"
}
}
}