@stacksjs/ts-cloud-core 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +21 -0
- package/README.md +321 -0
- package/package.json +31 -0
- package/src/advanced-features.test.ts +465 -0
- package/src/aws/cloudformation.ts +421 -0
- package/src/aws/cloudfront.ts +158 -0
- package/src/aws/credentials.test.ts +132 -0
- package/src/aws/credentials.ts +545 -0
- package/src/aws/index.ts +87 -0
- package/src/aws/s3.test.ts +188 -0
- package/src/aws/s3.ts +1088 -0
- package/src/aws/signature.test.ts +670 -0
- package/src/aws/signature.ts +1155 -0
- package/src/backup/disaster-recovery.test.ts +726 -0
- package/src/backup/disaster-recovery.ts +500 -0
- package/src/backup/index.ts +34 -0
- package/src/backup/manager.test.ts +498 -0
- package/src/backup/manager.ts +432 -0
- package/src/cicd/circleci.ts +430 -0
- package/src/cicd/github-actions.ts +424 -0
- package/src/cicd/gitlab-ci.ts +255 -0
- package/src/cicd/index.ts +8 -0
- package/src/cli/history.ts +396 -0
- package/src/cli/index.ts +10 -0
- package/src/cli/progress.ts +458 -0
- package/src/cli/repl.ts +454 -0
- package/src/cli/suggestions.ts +327 -0
- package/src/cli/table.test.ts +319 -0
- package/src/cli/table.ts +332 -0
- package/src/cloudformation/builder.test.ts +327 -0
- package/src/cloudformation/builder.ts +378 -0
- package/src/cloudformation/builders/api-gateway.ts +449 -0
- package/src/cloudformation/builders/cache.ts +334 -0
- package/src/cloudformation/builders/cdn.ts +278 -0
- package/src/cloudformation/builders/compute.ts +485 -0
- package/src/cloudformation/builders/database.ts +392 -0
- package/src/cloudformation/builders/functions.ts +343 -0
- package/src/cloudformation/builders/messaging.ts +140 -0
- package/src/cloudformation/builders/monitoring.ts +300 -0
- package/src/cloudformation/builders/network.ts +264 -0
- package/src/cloudformation/builders/queue.ts +147 -0
- package/src/cloudformation/builders/security.ts +399 -0
- package/src/cloudformation/builders/storage.ts +285 -0
- package/src/cloudformation/index.ts +30 -0
- package/src/cloudformation/types.ts +173 -0
- package/src/compliance/aws-config.ts +543 -0
- package/src/compliance/cloudtrail.ts +376 -0
- package/src/compliance/compliance.test.ts +423 -0
- package/src/compliance/guardduty.ts +446 -0
- package/src/compliance/index.ts +66 -0
- package/src/compliance/security-hub.ts +456 -0
- package/src/containers/build-optimization.ts +416 -0
- package/src/containers/containers.test.ts +508 -0
- package/src/containers/image-scanning.ts +360 -0
- package/src/containers/index.ts +9 -0
- package/src/containers/registry.ts +293 -0
- package/src/containers/service-mesh.ts +520 -0
- package/src/database/database.test.ts +762 -0
- package/src/database/index.ts +9 -0
- package/src/database/migrations.ts +444 -0
- package/src/database/performance.ts +528 -0
- package/src/database/replicas.ts +534 -0
- package/src/database/users.ts +494 -0
- package/src/dependency-graph.ts +143 -0
- package/src/deployment/ab-testing.ts +582 -0
- package/src/deployment/blue-green.ts +452 -0
- package/src/deployment/canary.ts +500 -0
- package/src/deployment/deployment.test.ts +526 -0
- package/src/deployment/index.ts +61 -0
- package/src/deployment/progressive.ts +62 -0
- package/src/dns/dns.test.ts +641 -0
- package/src/dns/dnssec.ts +315 -0
- package/src/dns/index.ts +8 -0
- package/src/dns/resolver.ts +496 -0
- package/src/dns/routing.ts +593 -0
- package/src/email/advanced/analytics.ts +445 -0
- package/src/email/advanced/index.ts +11 -0
- package/src/email/advanced/rules.ts +465 -0
- package/src/email/advanced/scheduling.ts +352 -0
- package/src/email/advanced/search.ts +412 -0
- package/src/email/advanced/shared-mailboxes.ts +404 -0
- package/src/email/advanced/templates.ts +455 -0
- package/src/email/advanced/threading.ts +281 -0
- package/src/email/analytics.ts +467 -0
- package/src/email/bounce-handling.ts +425 -0
- package/src/email/email.test.ts +431 -0
- package/src/email/handlers/__tests__/inbound.test.ts +38 -0
- package/src/email/handlers/__tests__/outbound.test.ts +37 -0
- package/src/email/handlers/converter.ts +227 -0
- package/src/email/handlers/feedback.ts +228 -0
- package/src/email/handlers/inbound.ts +169 -0
- package/src/email/handlers/outbound.ts +178 -0
- package/src/email/index.ts +15 -0
- package/src/email/reputation.ts +303 -0
- package/src/email/templates.ts +352 -0
- package/src/errors/index.test.ts +434 -0
- package/src/errors/index.ts +416 -0
- package/src/health-checks/index.ts +40 -0
- package/src/index.ts +360 -0
- package/src/intrinsic-functions.ts +118 -0
- package/src/lambda/concurrency.ts +330 -0
- package/src/lambda/destinations.ts +345 -0
- package/src/lambda/dlq.ts +425 -0
- package/src/lambda/index.ts +11 -0
- package/src/lambda/lambda.test.ts +840 -0
- package/src/lambda/layers.ts +263 -0
- package/src/lambda/versions.ts +376 -0
- package/src/lambda/vpc.ts +399 -0
- package/src/local/config.ts +114 -0
- package/src/local/index.ts +6 -0
- package/src/local/mock-aws.ts +351 -0
- package/src/modules/ai.ts +340 -0
- package/src/modules/api.ts +478 -0
- package/src/modules/auth.ts +805 -0
- package/src/modules/cache.ts +417 -0
- package/src/modules/cdn.ts +1062 -0
- package/src/modules/communication.ts +1094 -0
- package/src/modules/compute.ts +3348 -0
- package/src/modules/database.ts +554 -0
- package/src/modules/deployment.ts +1079 -0
- package/src/modules/dns.ts +337 -0
- package/src/modules/email.ts +1538 -0
- package/src/modules/filesystem.ts +515 -0
- package/src/modules/index.ts +32 -0
- package/src/modules/messaging.ts +486 -0
- package/src/modules/monitoring.ts +2086 -0
- package/src/modules/network.ts +664 -0
- package/src/modules/parameter-store.ts +325 -0
- package/src/modules/permissions.ts +1081 -0
- package/src/modules/phone.ts +494 -0
- package/src/modules/queue.ts +1260 -0
- package/src/modules/redirects.ts +464 -0
- package/src/modules/registry.ts +699 -0
- package/src/modules/search.ts +401 -0
- package/src/modules/secrets.ts +416 -0
- package/src/modules/security.ts +731 -0
- package/src/modules/sms.ts +389 -0
- package/src/modules/storage.ts +1120 -0
- package/src/modules/workflow.ts +680 -0
- package/src/multi-account/config.ts +521 -0
- package/src/multi-account/index.ts +7 -0
- package/src/multi-account/manager.ts +427 -0
- package/src/multi-region/cross-region.ts +410 -0
- package/src/multi-region/index.ts +8 -0
- package/src/multi-region/manager.ts +483 -0
- package/src/multi-region/regions.ts +435 -0
- package/src/network-security/index.ts +48 -0
- package/src/observability/index.ts +9 -0
- package/src/observability/logs.ts +522 -0
- package/src/observability/metrics.ts +460 -0
- package/src/observability/observability.test.ts +782 -0
- package/src/observability/synthetics.ts +568 -0
- package/src/observability/xray.ts +358 -0
- package/src/phone/advanced/analytics.ts +349 -0
- package/src/phone/advanced/callbacks.ts +428 -0
- package/src/phone/advanced/index.ts +8 -0
- package/src/phone/advanced/ivr-builder.ts +504 -0
- package/src/phone/advanced/recording.ts +310 -0
- package/src/phone/handlers/__tests__/incoming-call.test.ts +40 -0
- package/src/phone/handlers/incoming-call.ts +117 -0
- package/src/phone/handlers/missed-call.ts +116 -0
- package/src/phone/handlers/voicemail.ts +179 -0
- package/src/phone/index.ts +9 -0
- package/src/presets/api-backend.ts +134 -0
- package/src/presets/data-pipeline.ts +204 -0
- package/src/presets/extend.test.ts +295 -0
- package/src/presets/extend.ts +297 -0
- package/src/presets/fullstack-app.ts +144 -0
- package/src/presets/index.ts +27 -0
- package/src/presets/jamstack.ts +135 -0
- package/src/presets/microservices.ts +167 -0
- package/src/presets/ml-api.ts +208 -0
- package/src/presets/nodejs-server.ts +104 -0
- package/src/presets/nodejs-serverless.ts +114 -0
- package/src/presets/realtime-app.ts +184 -0
- package/src/presets/static-site.ts +64 -0
- package/src/presets/traditional-web-app.ts +339 -0
- package/src/presets/wordpress.ts +138 -0
- package/src/preview/github.test.ts +249 -0
- package/src/preview/github.ts +297 -0
- package/src/preview/index.ts +37 -0
- package/src/preview/manager.test.ts +440 -0
- package/src/preview/manager.ts +326 -0
- package/src/preview/notifications.test.ts +582 -0
- package/src/preview/notifications.ts +341 -0
- package/src/queue/batch-processing.ts +402 -0
- package/src/queue/dlq-monitoring.ts +402 -0
- package/src/queue/fifo.ts +342 -0
- package/src/queue/index.ts +9 -0
- package/src/queue/management.ts +428 -0
- package/src/queue/queue.test.ts +429 -0
- package/src/resource-mgmt/index.ts +39 -0
- package/src/resource-naming.ts +62 -0
- package/src/s3/index.ts +523 -0
- package/src/schema/cloud-config.schema.json +554 -0
- package/src/schema/index.ts +68 -0
- package/src/security/certificate-manager.ts +492 -0
- package/src/security/index.ts +9 -0
- package/src/security/scanning.ts +545 -0
- package/src/security/secrets-manager.ts +476 -0
- package/src/security/secrets-rotation.ts +456 -0
- package/src/security/security.test.ts +738 -0
- package/src/sms/advanced/ab-testing.ts +389 -0
- package/src/sms/advanced/analytics.ts +336 -0
- package/src/sms/advanced/campaigns.ts +523 -0
- package/src/sms/advanced/chatbot.ts +224 -0
- package/src/sms/advanced/index.ts +10 -0
- package/src/sms/advanced/link-tracking.ts +248 -0
- package/src/sms/advanced/mms.ts +308 -0
- package/src/sms/handlers/__tests__/send.test.ts +40 -0
- package/src/sms/handlers/delivery-status.ts +133 -0
- package/src/sms/handlers/receive.ts +162 -0
- package/src/sms/handlers/send.ts +174 -0
- package/src/sms/index.ts +9 -0
- package/src/stack-diff.ts +389 -0
- package/src/static-site/index.ts +85 -0
- package/src/template-builder.ts +110 -0
- package/src/template-validator.ts +574 -0
- package/src/utils/cache.ts +291 -0
- package/src/utils/diff.ts +269 -0
- package/src/utils/hash.ts +227 -0
- package/src/utils/index.ts +8 -0
- package/src/utils/parallel.ts +294 -0
- package/src/validators/credentials.test.ts +274 -0
- package/src/validators/credentials.ts +233 -0
- package/src/validators/quotas.test.ts +434 -0
- package/src/validators/quotas.ts +217 -0
- package/test/ai.test.ts +327 -0
- package/test/api.test.ts +511 -0
- package/test/auth.test.ts +632 -0
- package/test/cache.test.ts +406 -0
- package/test/cdn.test.ts +247 -0
- package/test/compute.test.ts +861 -0
- package/test/database.test.ts +523 -0
- package/test/deployment.test.ts +499 -0
- package/test/dns.test.ts +270 -0
- package/test/email.test.ts +439 -0
- package/test/filesystem.test.ts +382 -0
- package/test/integration.test.ts +350 -0
- package/test/messaging.test.ts +514 -0
- package/test/monitoring.test.ts +634 -0
- package/test/network.test.ts +425 -0
- package/test/permissions.test.ts +488 -0
- package/test/queue.test.ts +484 -0
- package/test/registry.test.ts +306 -0
- package/test/security.test.ts +462 -0
- package/test/storage.test.ts +463 -0
- package/test/template-validator.test.ts +559 -0
- package/test/workflow.test.ts +592 -0
- package/tsconfig.json +16 -0
- package/tsconfig.tsbuildinfo +1 -0
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
import type { CloudConfig } from '@stacksjs/ts-cloud-types'
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Full Stack App Preset
|
|
5
|
+
* Perfect for: Complete web applications with frontend and API
|
|
6
|
+
* Includes: S3 + CloudFront (frontend) + ECS Fargate (API) + RDS + Redis
|
|
7
|
+
*/
|
|
8
|
+
export function createFullStackAppPreset(options: {
|
|
9
|
+
name: string
|
|
10
|
+
slug: string
|
|
11
|
+
domain: string
|
|
12
|
+
apiSubdomain?: string
|
|
13
|
+
}): Partial<CloudConfig> {
|
|
14
|
+
const {
|
|
15
|
+
name,
|
|
16
|
+
slug,
|
|
17
|
+
domain,
|
|
18
|
+
apiSubdomain = 'api',
|
|
19
|
+
} = options
|
|
20
|
+
|
|
21
|
+
return {
|
|
22
|
+
project: {
|
|
23
|
+
name,
|
|
24
|
+
slug,
|
|
25
|
+
region: 'us-east-1',
|
|
26
|
+
},
|
|
27
|
+
mode: 'hybrid',
|
|
28
|
+
environments: {
|
|
29
|
+
production: {
|
|
30
|
+
type: 'production',
|
|
31
|
+
domain,
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
infrastructure: {
|
|
35
|
+
network: {
|
|
36
|
+
vpc: {
|
|
37
|
+
cidr: '10.0.0.0/16',
|
|
38
|
+
availabilityZones: 2,
|
|
39
|
+
natGateways: 1,
|
|
40
|
+
},
|
|
41
|
+
},
|
|
42
|
+
// Frontend: S3 + CloudFront
|
|
43
|
+
storage: {
|
|
44
|
+
frontend: {
|
|
45
|
+
public: true,
|
|
46
|
+
versioning: true,
|
|
47
|
+
website: true,
|
|
48
|
+
encryption: false,
|
|
49
|
+
},
|
|
50
|
+
},
|
|
51
|
+
cdn: {
|
|
52
|
+
enabled: true,
|
|
53
|
+
customDomain: {
|
|
54
|
+
domain,
|
|
55
|
+
certificateArn: 'TO_BE_GENERATED',
|
|
56
|
+
},
|
|
57
|
+
cachePolicy: {
|
|
58
|
+
minTTL: 0,
|
|
59
|
+
defaultTTL: 86400,
|
|
60
|
+
maxTTL: 31536000,
|
|
61
|
+
},
|
|
62
|
+
compress: true,
|
|
63
|
+
http3: true,
|
|
64
|
+
errorPages: {
|
|
65
|
+
404: '/index.html',
|
|
66
|
+
},
|
|
67
|
+
},
|
|
68
|
+
// Backend: ECS Fargate
|
|
69
|
+
compute: {
|
|
70
|
+
fargate: {
|
|
71
|
+
taskDefinition: {
|
|
72
|
+
cpu: '512',
|
|
73
|
+
memory: '1024',
|
|
74
|
+
containerDefinitions: [{
|
|
75
|
+
name: 'api',
|
|
76
|
+
image: `${slug}-api:latest`,
|
|
77
|
+
portMappings: [{ containerPort: 3000 }],
|
|
78
|
+
}],
|
|
79
|
+
},
|
|
80
|
+
service: {
|
|
81
|
+
desiredCount: 2,
|
|
82
|
+
healthCheck: {
|
|
83
|
+
path: '/api/health',
|
|
84
|
+
interval: 30,
|
|
85
|
+
},
|
|
86
|
+
autoScaling: {
|
|
87
|
+
min: 2,
|
|
88
|
+
max: 10,
|
|
89
|
+
targetCPU: 70,
|
|
90
|
+
},
|
|
91
|
+
},
|
|
92
|
+
loadBalancer: {
|
|
93
|
+
type: 'application',
|
|
94
|
+
customDomain: {
|
|
95
|
+
domain: `${apiSubdomain}.${domain}`,
|
|
96
|
+
certificateArn: 'TO_BE_GENERATED',
|
|
97
|
+
},
|
|
98
|
+
},
|
|
99
|
+
},
|
|
100
|
+
},
|
|
101
|
+
// Database: PostgreSQL
|
|
102
|
+
databases: {
|
|
103
|
+
postgres: {
|
|
104
|
+
engine: 'postgres',
|
|
105
|
+
version: '15',
|
|
106
|
+
instanceClass: 'db.t3.small',
|
|
107
|
+
allocatedStorage: 50,
|
|
108
|
+
multiAZ: true,
|
|
109
|
+
backupRetentionDays: 14,
|
|
110
|
+
deletionProtection: true,
|
|
111
|
+
},
|
|
112
|
+
},
|
|
113
|
+
// Cache: Redis
|
|
114
|
+
cache: {
|
|
115
|
+
redis: {
|
|
116
|
+
nodeType: 'cache.t3.small',
|
|
117
|
+
numCacheNodes: 2,
|
|
118
|
+
engine: 'redis',
|
|
119
|
+
engineVersion: '7.0',
|
|
120
|
+
},
|
|
121
|
+
},
|
|
122
|
+
// Queue for async jobs
|
|
123
|
+
queues: {
|
|
124
|
+
jobs: {
|
|
125
|
+
fifo: false,
|
|
126
|
+
visibilityTimeout: 300,
|
|
127
|
+
messageRetentionPeriod: 345600, // 4 days
|
|
128
|
+
deadLetterQueue: true,
|
|
129
|
+
},
|
|
130
|
+
},
|
|
131
|
+
security: {
|
|
132
|
+
certificate: {
|
|
133
|
+
domain,
|
|
134
|
+
subdomains: [`*.${domain}`],
|
|
135
|
+
validationMethod: 'DNS',
|
|
136
|
+
},
|
|
137
|
+
waf: {
|
|
138
|
+
enabled: true,
|
|
139
|
+
rules: ['rateLimit', 'sqlInjection', 'xss'],
|
|
140
|
+
},
|
|
141
|
+
},
|
|
142
|
+
},
|
|
143
|
+
}
|
|
144
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// Preset creators
|
|
2
|
+
export { createStaticSitePreset } from './static-site'
|
|
3
|
+
export { createNodeJsServerPreset } from './nodejs-server'
|
|
4
|
+
export { createNodeJsServerlessPreset } from './nodejs-serverless'
|
|
5
|
+
export { createFullStackAppPreset } from './fullstack-app'
|
|
6
|
+
export { createApiBackendPreset } from './api-backend'
|
|
7
|
+
export { createWordPressPreset } from './wordpress'
|
|
8
|
+
export { createJamstackPreset } from './jamstack'
|
|
9
|
+
export { createMicroservicesPreset } from './microservices'
|
|
10
|
+
export { createRealtimeAppPreset } from './realtime-app'
|
|
11
|
+
export { createDataPipelinePreset } from './data-pipeline'
|
|
12
|
+
export { createMLApiPreset } from './ml-api'
|
|
13
|
+
export { createTraditionalWebAppPreset } from './traditional-web-app'
|
|
14
|
+
|
|
15
|
+
// Preset extension utilities
|
|
16
|
+
export {
|
|
17
|
+
extendPreset,
|
|
18
|
+
composePresets,
|
|
19
|
+
createPreset,
|
|
20
|
+
mergeInfrastructure,
|
|
21
|
+
withMonitoring,
|
|
22
|
+
withSecurity,
|
|
23
|
+
withDatabase,
|
|
24
|
+
withCache,
|
|
25
|
+
withCDN,
|
|
26
|
+
withQueue,
|
|
27
|
+
} from './extend'
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import type { CloudConfig } from '@stacksjs/ts-cloud-types'
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Jamstack Site Preset
|
|
5
|
+
* Perfect for: Modern static sites with API routes, Next.js, Astro, SvelteKit
|
|
6
|
+
* Includes: S3 + CloudFront + Lambda@Edge for SSR/ISR
|
|
7
|
+
*/
|
|
8
|
+
export function createJamstackPreset(options: {
|
|
9
|
+
name: string
|
|
10
|
+
slug: string
|
|
11
|
+
domain: string
|
|
12
|
+
apiDomain?: string
|
|
13
|
+
}): Partial<CloudConfig> {
|
|
14
|
+
const {
|
|
15
|
+
name,
|
|
16
|
+
slug,
|
|
17
|
+
domain,
|
|
18
|
+
apiDomain,
|
|
19
|
+
} = options
|
|
20
|
+
|
|
21
|
+
return {
|
|
22
|
+
project: {
|
|
23
|
+
name,
|
|
24
|
+
slug,
|
|
25
|
+
region: 'us-east-1', // Lambda@Edge requires us-east-1
|
|
26
|
+
},
|
|
27
|
+
mode: 'serverless',
|
|
28
|
+
environments: {
|
|
29
|
+
production: {
|
|
30
|
+
type: 'production',
|
|
31
|
+
domain,
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
infrastructure: {
|
|
35
|
+
storage: {
|
|
36
|
+
static: {
|
|
37
|
+
public: true,
|
|
38
|
+
versioning: true,
|
|
39
|
+
website: true,
|
|
40
|
+
encryption: false,
|
|
41
|
+
cors: [{
|
|
42
|
+
allowedOrigins: ['*'],
|
|
43
|
+
allowedMethods: ['GET', 'HEAD'],
|
|
44
|
+
}],
|
|
45
|
+
lifecycleRules: [{
|
|
46
|
+
id: 'DeleteOldVersions',
|
|
47
|
+
enabled: true,
|
|
48
|
+
expirationDays: 90, // Clean up old versions after 90 days
|
|
49
|
+
}],
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
cdn: {
|
|
53
|
+
enabled: true,
|
|
54
|
+
customDomain: {
|
|
55
|
+
domain,
|
|
56
|
+
certificateArn: 'TO_BE_GENERATED',
|
|
57
|
+
},
|
|
58
|
+
cachePolicy: {
|
|
59
|
+
minTTL: 0,
|
|
60
|
+
defaultTTL: 0, // Let Next.js/framework control caching
|
|
61
|
+
maxTTL: 31536000,
|
|
62
|
+
},
|
|
63
|
+
compress: true,
|
|
64
|
+
http3: true,
|
|
65
|
+
errorPages: {
|
|
66
|
+
404: '/404.html',
|
|
67
|
+
500: '/500.html',
|
|
68
|
+
},
|
|
69
|
+
// Lambda@Edge for SSR/ISR
|
|
70
|
+
edgeFunctions: [{
|
|
71
|
+
eventType: 'origin-request',
|
|
72
|
+
functionArn: 'TO_BE_CREATED',
|
|
73
|
+
name: 'ssr-handler',
|
|
74
|
+
}],
|
|
75
|
+
},
|
|
76
|
+
functions: {
|
|
77
|
+
ssr: {
|
|
78
|
+
runtime: 'nodejs20.x',
|
|
79
|
+
handler: 'dist/edge/ssr.handler',
|
|
80
|
+
memory: 512,
|
|
81
|
+
timeout: 5, // Edge functions have strict limits
|
|
82
|
+
},
|
|
83
|
+
// API routes as Lambda functions
|
|
84
|
+
...(apiDomain ? {
|
|
85
|
+
api: {
|
|
86
|
+
runtime: 'nodejs20.x',
|
|
87
|
+
handler: 'dist/api/index.handler',
|
|
88
|
+
memory: 1024,
|
|
89
|
+
timeout: 30,
|
|
90
|
+
events: [{
|
|
91
|
+
type: 'http',
|
|
92
|
+
path: '/{proxy+}',
|
|
93
|
+
method: 'ANY',
|
|
94
|
+
}],
|
|
95
|
+
},
|
|
96
|
+
} : {}),
|
|
97
|
+
},
|
|
98
|
+
apiGateway: apiDomain ? {
|
|
99
|
+
type: 'HTTP',
|
|
100
|
+
customDomain: {
|
|
101
|
+
domain: apiDomain,
|
|
102
|
+
certificateArn: 'TO_BE_GENERATED',
|
|
103
|
+
},
|
|
104
|
+
cors: {
|
|
105
|
+
allowOrigins: [domain],
|
|
106
|
+
allowMethods: ['GET', 'POST', 'PUT', 'DELETE'],
|
|
107
|
+
allowHeaders: ['Content-Type', 'Authorization'],
|
|
108
|
+
},
|
|
109
|
+
} : undefined,
|
|
110
|
+
databases: {
|
|
111
|
+
dynamodb: {
|
|
112
|
+
tables: {
|
|
113
|
+
content: {
|
|
114
|
+
partitionKey: { name: 'id', type: 'S' },
|
|
115
|
+
sortKey: { name: 'type', type: 'S' },
|
|
116
|
+
billingMode: 'PAY_PER_REQUEST',
|
|
117
|
+
streamEnabled: false,
|
|
118
|
+
},
|
|
119
|
+
},
|
|
120
|
+
},
|
|
121
|
+
},
|
|
122
|
+
security: {
|
|
123
|
+
certificate: {
|
|
124
|
+
domain,
|
|
125
|
+
subdomains: apiDomain ? [apiDomain] : [],
|
|
126
|
+
validationMethod: 'DNS',
|
|
127
|
+
},
|
|
128
|
+
waf: {
|
|
129
|
+
enabled: true,
|
|
130
|
+
rules: ['rateLimit', 'geoBlock'],
|
|
131
|
+
},
|
|
132
|
+
},
|
|
133
|
+
},
|
|
134
|
+
}
|
|
135
|
+
}
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
import type { CloudConfig } from '@stacksjs/ts-cloud-types'
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Microservices Preset
|
|
5
|
+
* Perfect for: Service-oriented architectures, distributed systems
|
|
6
|
+
* Includes: Multiple ECS services + API Gateway + Service Discovery + DynamoDB
|
|
7
|
+
*/
|
|
8
|
+
export function createMicroservicesPreset(options: {
|
|
9
|
+
name: string
|
|
10
|
+
slug: string
|
|
11
|
+
domain: string
|
|
12
|
+
services: Array<{
|
|
13
|
+
name: string
|
|
14
|
+
port: number
|
|
15
|
+
cpu?: string
|
|
16
|
+
memory?: string
|
|
17
|
+
desiredCount?: number
|
|
18
|
+
}>
|
|
19
|
+
}): Partial<CloudConfig> {
|
|
20
|
+
const { name, slug, domain, services } = options
|
|
21
|
+
|
|
22
|
+
return {
|
|
23
|
+
project: {
|
|
24
|
+
name,
|
|
25
|
+
slug,
|
|
26
|
+
region: 'us-east-1',
|
|
27
|
+
},
|
|
28
|
+
mode: 'serverless',
|
|
29
|
+
environments: {
|
|
30
|
+
production: {
|
|
31
|
+
type: 'production',
|
|
32
|
+
domain,
|
|
33
|
+
},
|
|
34
|
+
},
|
|
35
|
+
infrastructure: {
|
|
36
|
+
network: {
|
|
37
|
+
vpc: {
|
|
38
|
+
cidr: '10.0.0.0/16',
|
|
39
|
+
availabilityZones: 3, // Higher availability for microservices
|
|
40
|
+
natGateways: 2,
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
compute: {
|
|
44
|
+
services: services.map(service => ({
|
|
45
|
+
name: service.name,
|
|
46
|
+
type: 'fargate',
|
|
47
|
+
taskDefinition: {
|
|
48
|
+
cpu: service.cpu || '256',
|
|
49
|
+
memory: service.memory || '512',
|
|
50
|
+
containerDefinitions: [{
|
|
51
|
+
name: service.name,
|
|
52
|
+
image: `${slug}-${service.name}:latest`,
|
|
53
|
+
portMappings: [{ containerPort: service.port }],
|
|
54
|
+
healthCheck: {
|
|
55
|
+
command: ['CMD-SHELL', `curl -f http://localhost:${service.port}/health || exit 1`],
|
|
56
|
+
interval: 30,
|
|
57
|
+
timeout: 5,
|
|
58
|
+
retries: 3,
|
|
59
|
+
},
|
|
60
|
+
}],
|
|
61
|
+
},
|
|
62
|
+
service: {
|
|
63
|
+
desiredCount: service.desiredCount || 2,
|
|
64
|
+
serviceDiscovery: {
|
|
65
|
+
enabled: true,
|
|
66
|
+
namespace: `${slug}.local`,
|
|
67
|
+
},
|
|
68
|
+
autoScaling: {
|
|
69
|
+
min: 2,
|
|
70
|
+
max: 10,
|
|
71
|
+
targetCPU: 70,
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
})),
|
|
75
|
+
},
|
|
76
|
+
apiGateway: {
|
|
77
|
+
type: 'HTTP',
|
|
78
|
+
customDomain: {
|
|
79
|
+
domain,
|
|
80
|
+
certificateArn: 'TO_BE_GENERATED',
|
|
81
|
+
},
|
|
82
|
+
cors: {
|
|
83
|
+
allowOrigins: ['*'],
|
|
84
|
+
allowMethods: ['GET', 'POST', 'PUT', 'DELETE', 'PATCH'],
|
|
85
|
+
},
|
|
86
|
+
routes: services.map(service => ({
|
|
87
|
+
path: `/${service.name}/{proxy+}`,
|
|
88
|
+
integration: {
|
|
89
|
+
type: 'vpc-link',
|
|
90
|
+
service: service.name,
|
|
91
|
+
},
|
|
92
|
+
})),
|
|
93
|
+
},
|
|
94
|
+
databases: {
|
|
95
|
+
dynamodb: {
|
|
96
|
+
tables: Object.fromEntries(
|
|
97
|
+
services.map(service => [
|
|
98
|
+
`${slug}-${service.name}`,
|
|
99
|
+
{
|
|
100
|
+
partitionKey: { name: 'id', type: 'S' },
|
|
101
|
+
billingMode: 'PAY_PER_REQUEST',
|
|
102
|
+
streamEnabled: true,
|
|
103
|
+
pointInTimeRecovery: true,
|
|
104
|
+
},
|
|
105
|
+
]),
|
|
106
|
+
),
|
|
107
|
+
},
|
|
108
|
+
},
|
|
109
|
+
queues: {
|
|
110
|
+
events: {
|
|
111
|
+
fifo: false,
|
|
112
|
+
visibilityTimeout: 300,
|
|
113
|
+
messageRetentionPeriod: 345600,
|
|
114
|
+
deadLetterQueue: true,
|
|
115
|
+
},
|
|
116
|
+
},
|
|
117
|
+
messaging: {
|
|
118
|
+
topics: {
|
|
119
|
+
events: {
|
|
120
|
+
name: `${slug}-events`,
|
|
121
|
+
subscriptions: services.map(service => ({
|
|
122
|
+
protocol: 'sqs' as const,
|
|
123
|
+
endpoint: `${slug}-${service.name}-queue`,
|
|
124
|
+
filterPolicy: {
|
|
125
|
+
service: [service.name],
|
|
126
|
+
},
|
|
127
|
+
})),
|
|
128
|
+
},
|
|
129
|
+
},
|
|
130
|
+
},
|
|
131
|
+
monitoring: {
|
|
132
|
+
dashboard: {
|
|
133
|
+
name: `${slug}-microservices`,
|
|
134
|
+
widgets: services.map(service => ({
|
|
135
|
+
type: 'metric',
|
|
136
|
+
metrics: [
|
|
137
|
+
{ service: service.name, metric: 'CPUUtilization' },
|
|
138
|
+
{ service: service.name, metric: 'MemoryUtilization' },
|
|
139
|
+
{ service: service.name, metric: 'RequestCount' },
|
|
140
|
+
],
|
|
141
|
+
})),
|
|
142
|
+
},
|
|
143
|
+
alarms: services.flatMap(service => [{
|
|
144
|
+
name: `${service.name}-high-cpu`,
|
|
145
|
+
metric: 'CPUUtilization',
|
|
146
|
+
threshold: 80,
|
|
147
|
+
service: service.name,
|
|
148
|
+
}, {
|
|
149
|
+
name: `${service.name}-errors`,
|
|
150
|
+
metric: 'Errors',
|
|
151
|
+
threshold: 10,
|
|
152
|
+
service: service.name,
|
|
153
|
+
}]),
|
|
154
|
+
},
|
|
155
|
+
security: {
|
|
156
|
+
certificate: {
|
|
157
|
+
domain,
|
|
158
|
+
validationMethod: 'DNS',
|
|
159
|
+
},
|
|
160
|
+
waf: {
|
|
161
|
+
enabled: true,
|
|
162
|
+
rules: ['rateLimit', 'sqlInjection'],
|
|
163
|
+
},
|
|
164
|
+
},
|
|
165
|
+
},
|
|
166
|
+
}
|
|
167
|
+
}
|
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
import type { CloudConfig } from '@stacksjs/ts-cloud-types'
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Machine Learning API Preset
|
|
5
|
+
* Perfect for: ML inference APIs, AI-powered applications
|
|
6
|
+
* Includes: SageMaker + API Gateway + Lambda + S3
|
|
7
|
+
*/
|
|
8
|
+
export function createMLApiPreset(options: {
|
|
9
|
+
name: string
|
|
10
|
+
slug: string
|
|
11
|
+
domain?: string
|
|
12
|
+
modelS3Path?: string
|
|
13
|
+
instanceType?: string
|
|
14
|
+
}): Partial<CloudConfig> {
|
|
15
|
+
const {
|
|
16
|
+
name,
|
|
17
|
+
slug,
|
|
18
|
+
domain,
|
|
19
|
+
modelS3Path = `s3://${slug}-models/`,
|
|
20
|
+
instanceType = 'ml.t3.medium',
|
|
21
|
+
} = options
|
|
22
|
+
|
|
23
|
+
return {
|
|
24
|
+
project: {
|
|
25
|
+
name,
|
|
26
|
+
slug,
|
|
27
|
+
region: 'us-east-1',
|
|
28
|
+
},
|
|
29
|
+
mode: 'serverless',
|
|
30
|
+
environments: {
|
|
31
|
+
production: {
|
|
32
|
+
type: 'production',
|
|
33
|
+
domain,
|
|
34
|
+
},
|
|
35
|
+
},
|
|
36
|
+
infrastructure: {
|
|
37
|
+
storage: {
|
|
38
|
+
models: {
|
|
39
|
+
public: false,
|
|
40
|
+
versioning: true,
|
|
41
|
+
encryption: true,
|
|
42
|
+
intelligentTiering: true,
|
|
43
|
+
},
|
|
44
|
+
datasets: {
|
|
45
|
+
public: false,
|
|
46
|
+
versioning: true,
|
|
47
|
+
encryption: true,
|
|
48
|
+
lifecycleRules: [{
|
|
49
|
+
id: 'ArchiveOldDatasets',
|
|
50
|
+
enabled: true,
|
|
51
|
+
transitions: [{
|
|
52
|
+
days: 90,
|
|
53
|
+
storageClass: 'GLACIER',
|
|
54
|
+
}],
|
|
55
|
+
}],
|
|
56
|
+
},
|
|
57
|
+
predictions: {
|
|
58
|
+
public: false,
|
|
59
|
+
versioning: false,
|
|
60
|
+
encryption: true,
|
|
61
|
+
lifecycleRules: [{
|
|
62
|
+
id: 'DeleteOldPredictions',
|
|
63
|
+
enabled: true,
|
|
64
|
+
expirationDays: 30,
|
|
65
|
+
}],
|
|
66
|
+
},
|
|
67
|
+
},
|
|
68
|
+
machineLearning: {
|
|
69
|
+
sagemaker: {
|
|
70
|
+
endpoints: [{
|
|
71
|
+
name: `${slug}-inference`,
|
|
72
|
+
modelS3Path,
|
|
73
|
+
instanceType,
|
|
74
|
+
initialInstanceCount: 1,
|
|
75
|
+
autoScaling: {
|
|
76
|
+
minInstances: 1,
|
|
77
|
+
maxInstances: 5,
|
|
78
|
+
targetInvocationsPerInstance: 1000,
|
|
79
|
+
},
|
|
80
|
+
}],
|
|
81
|
+
trainingJobs: [{
|
|
82
|
+
name: `${slug}-training`,
|
|
83
|
+
algorithmSpecification: {
|
|
84
|
+
trainingImage: 'TO_BE_SPECIFIED',
|
|
85
|
+
trainingInputMode: 'File',
|
|
86
|
+
},
|
|
87
|
+
instanceType: 'ml.p3.2xlarge',
|
|
88
|
+
instanceCount: 1,
|
|
89
|
+
volumeSizeInGB: 50,
|
|
90
|
+
maxRuntimeInSeconds: 86400, // 24 hours
|
|
91
|
+
}],
|
|
92
|
+
},
|
|
93
|
+
},
|
|
94
|
+
apiGateway: {
|
|
95
|
+
type: 'HTTP',
|
|
96
|
+
customDomain: domain ? {
|
|
97
|
+
domain,
|
|
98
|
+
certificateArn: 'TO_BE_GENERATED',
|
|
99
|
+
} : undefined,
|
|
100
|
+
cors: {
|
|
101
|
+
allowOrigins: ['*'],
|
|
102
|
+
allowMethods: ['POST'],
|
|
103
|
+
allowHeaders: ['Content-Type', 'Authorization'],
|
|
104
|
+
},
|
|
105
|
+
throttling: {
|
|
106
|
+
rateLimit: 1000,
|
|
107
|
+
burstLimit: 500,
|
|
108
|
+
},
|
|
109
|
+
},
|
|
110
|
+
functions: {
|
|
111
|
+
predict: {
|
|
112
|
+
runtime: 'python3.11',
|
|
113
|
+
handler: 'handlers/predict.handler',
|
|
114
|
+
memory: 2048,
|
|
115
|
+
timeout: 60,
|
|
116
|
+
events: [{
|
|
117
|
+
type: 'http',
|
|
118
|
+
path: '/predict',
|
|
119
|
+
method: 'POST',
|
|
120
|
+
}],
|
|
121
|
+
environment: {
|
|
122
|
+
SAGEMAKER_ENDPOINT: `${slug}-inference`,
|
|
123
|
+
MODEL_BUCKET: `${slug}-models`,
|
|
124
|
+
},
|
|
125
|
+
},
|
|
126
|
+
'batch-predict': {
|
|
127
|
+
runtime: 'python3.11',
|
|
128
|
+
handler: 'handlers/batchPredict.handler',
|
|
129
|
+
memory: 3008,
|
|
130
|
+
timeout: 900, // 15 minutes
|
|
131
|
+
events: [{
|
|
132
|
+
type: 's3',
|
|
133
|
+
bucket: `${slug}-datasets`,
|
|
134
|
+
suffix: '.csv',
|
|
135
|
+
}],
|
|
136
|
+
},
|
|
137
|
+
'trigger-training': {
|
|
138
|
+
runtime: 'python3.11',
|
|
139
|
+
handler: 'handlers/training.handler',
|
|
140
|
+
memory: 1024,
|
|
141
|
+
timeout: 300,
|
|
142
|
+
events: [{
|
|
143
|
+
type: 'schedule',
|
|
144
|
+
expression: 'cron(0 2 * * ? *)', // Daily at 2 AM
|
|
145
|
+
}],
|
|
146
|
+
},
|
|
147
|
+
},
|
|
148
|
+
databases: {
|
|
149
|
+
dynamodb: {
|
|
150
|
+
tables: {
|
|
151
|
+
[`${slug}-predictions`]: {
|
|
152
|
+
partitionKey: { name: 'requestId', type: 'S' },
|
|
153
|
+
sortKey: { name: 'timestamp', type: 'S' },
|
|
154
|
+
billingMode: 'PAY_PER_REQUEST',
|
|
155
|
+
streamEnabled: true,
|
|
156
|
+
},
|
|
157
|
+
[`${slug}-models`]: {
|
|
158
|
+
partitionKey: { name: 'modelId', type: 'S' },
|
|
159
|
+
sortKey: { name: 'version', type: 'S' },
|
|
160
|
+
billingMode: 'PAY_PER_REQUEST',
|
|
161
|
+
},
|
|
162
|
+
},
|
|
163
|
+
},
|
|
164
|
+
},
|
|
165
|
+
queues: {
|
|
166
|
+
predictions: {
|
|
167
|
+
fifo: false,
|
|
168
|
+
visibilityTimeout: 300,
|
|
169
|
+
messageRetentionPeriod: 86400, // 1 day
|
|
170
|
+
deadLetterQueue: true,
|
|
171
|
+
},
|
|
172
|
+
},
|
|
173
|
+
monitoring: {
|
|
174
|
+
dashboard: {
|
|
175
|
+
name: `${slug}-ml`,
|
|
176
|
+
widgets: [{
|
|
177
|
+
type: 'metric',
|
|
178
|
+
metrics: [
|
|
179
|
+
'SageMakerInvocations',
|
|
180
|
+
'SageMakerModelLatency',
|
|
181
|
+
'APIGatewayRequests',
|
|
182
|
+
'LambdaErrors',
|
|
183
|
+
],
|
|
184
|
+
}],
|
|
185
|
+
},
|
|
186
|
+
alarms: [{
|
|
187
|
+
metric: 'SageMakerModelLatency',
|
|
188
|
+
threshold: 1000, // 1 second
|
|
189
|
+
evaluationPeriods: 2,
|
|
190
|
+
}, {
|
|
191
|
+
metric: 'SageMakerInvocationErrors',
|
|
192
|
+
threshold: 10,
|
|
193
|
+
evaluationPeriods: 1,
|
|
194
|
+
}],
|
|
195
|
+
},
|
|
196
|
+
security: {
|
|
197
|
+
certificate: domain ? {
|
|
198
|
+
domain,
|
|
199
|
+
validationMethod: 'DNS',
|
|
200
|
+
} : undefined,
|
|
201
|
+
waf: {
|
|
202
|
+
enabled: true,
|
|
203
|
+
rules: ['rateLimit', 'apiProtection'],
|
|
204
|
+
},
|
|
205
|
+
},
|
|
206
|
+
},
|
|
207
|
+
}
|
|
208
|
+
}
|