forked from awslabs/garnet-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparameters.ts
20 lines (17 loc) · 898 Bytes
/
parameters.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { SIZING } from "./constants"
// GARNET PARAMETERS
export const Parameters = {
/**
* See regions in which you can deploy Garnet:
* https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-vpc-links.html#http-api-vpc-link-availability
*/
aws_region: "eu-west-1",
/**
* The description above is for reference only. You can fine tune your deployment in the file sizing.ts.
* Small is suitable for developing and testing the capabilities of the framework (< 1000 events per minute).
* Medium and above deployments are using the distributed architecture (8 microservices) and increasing the capacity of the database, the number of containers, their CPU and memory.
*/
sizing: SIZING.Small,
// SMART DATA MODEL
smart_data_model_url : 'https://raw.githubusercontent.com/awslabs/garnet-framework/main/context.jsonld',
}