-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathskeet-cloud.config.json
55 lines (55 loc) · 1.21 KB
/
skeet-cloud.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"app": {
"name": "skeet-app",
"projectId": "skeet-app",
"fbProjectId": "skeet-app",
"template": "Expo (React Native) - Firestore",
"region": "europe-west6",
"appDomain": "skeet.dev",
"nsDomain": "skeet.dev",
"lbDomain": "lb.skeet.dev",
"hasLoadBalancer": true
},
"cloudArmor": [
{
"securityPolicyName": "skeet-skeet-app-armor",
"rules": [
{
"priority": "10",
"description": "Allow Your Home IP addresses",
"options": {
"src-ip-ranges": "x.x.x.x",
"action": "allow"
}
},
{
"priority": "300",
"description": "Defense from NodeJS attack",
"options": {
"action": "deny-403",
"expression": "evaluatePreconfiguredExpr('nodejs-v33-stable')"
}
},
{
"priority": "2147483647",
"description": "Deny All IP addresses",
"options": {
"action": "deny-403"
}
}
]
}
],
"ai": {
"lang": "en",
"ais": [
{
"name": "VertexAI",
"availableModels": [
"chat-bison@001",
"chat-bison-32k"
]
}
]
}
}