forked from Jmevorach/host-openmrs-on-aws-fargate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcdk.json
66 lines (66 loc) · 2.38 KB
/
cdk.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
56
57
58
59
60
61
62
63
64
65
66
{
"app": "python3 app.py",
"watch": {
"include": [
"**"
],
"exclude": [
"README.md",
"cdk*.json",
"requirements*.txt",
"source.bat",
"**/__init__.py",
"python/__pycache__",
"tests"
]
},
"context": {
"security_group_ip_range_ipv4": null,
"security_group_ip_range_ipv6": null,
"certificate_arn": null,
"route53_domain": null,
"openmrs_reference_application_version": "3.2.0-rc.3",
"email_forwarding_address": null,
"openmrs_service_fargate_cpu_per_task": 2048,
"openmrs_service_fargate_ram_per_task": 4096,
"openmrs_service_fargate_minimum_capacity": 2,
"openmrs_service_fargate_maximum_capacity": 2,
"openmrs_service_fargate_cpu_autoscaling_percentage": 60,
"openmrs_service_fargate_memory_autoscaling_percentage": 60,
"sticky_session_cookie_length_in_minutes": 60,
"enable_long_term_cloudtrail_monitoring": "true",
"configure_ses": "false",
"enable_ecs_exec": "false",
"enable_bedrock_integration": "false",
"enable_data_api": "false",
"enable_global_accelerator": "false",
"open_smtp_port": "false",
"create_serverless_analytics_environment": "false",
"aurora_ml_inference_timeout": "30000",
"net_read_timeout": "30000",
"net_write_timeout": "30000",
"wait_timeout": "30000",
"connect_timeout": "30000",
"max_execution_time": "3000000",
"aliases": null,
"@aws-cdk/aws-lambda:recognizeLayerVersion": true,
"@aws-cdk/core:checkSecretUsage": true,
"@aws-cdk/core:target-partitions": [
"aws",
"aws-cn"
],
"@aws-cdk-containers/ecs-service-extensions:enableDefaultLogDriver": true,
"@aws-cdk/aws-ec2:uniqueImdsv2TemplateName": true,
"@aws-cdk/aws-ecs:arnFormatIncludesClusterName": true,
"@aws-cdk/aws-iam:minimizePolicies": true,
"@aws-cdk/core:validateSnapshotRemovalPolicy": true,
"@aws-cdk/aws-codepipeline:crossAccountKeyAliasStackSafeResourceName": true,
"@aws-cdk/aws-s3:createDefaultLoggingPolicy": true,
"@aws-cdk/aws-sns-subscriptions:restrictSqsDescryption": true,
"@aws-cdk/aws-apigateway:disableCloudWatchRole": true,
"@aws-cdk/core:enablePartitionLiterals": true,
"@aws-cdk/aws-events:eventsTargetQueueSameAccount": true,
"@aws-cdk/aws-iam:standardizedServicePrincipals": true,
"@aws-cdk/aws-ecs:disableExplicitDeploymentControllerForCircuitBreaker": true
}
}