@gugananuvem/aws-local-simulator 1.0.12 β†’ 1.0.14

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.
Files changed (57) hide show
  1. package/README.md +235 -11
  2. package/package.json +12 -2
  3. package/src/config/default-config.js +1 -0
  4. package/src/index.js +18 -2
  5. package/src/server.js +36 -32
  6. package/src/services/apigateway/index.js +5 -0
  7. package/src/services/apigateway/server.js +20 -0
  8. package/src/services/apigateway/simulator.js +13 -3
  9. package/src/services/athena/index.js +75 -0
  10. package/src/services/athena/server.js +101 -0
  11. package/src/services/athena/simulador.js +998 -0
  12. package/src/services/athena/simulator.js +346 -0
  13. package/src/services/cloudformation/index.js +106 -0
  14. package/src/services/cloudformation/server.js +417 -0
  15. package/src/services/cloudformation/simulador.js +1045 -0
  16. package/src/services/cloudtrail/index.js +84 -0
  17. package/src/services/cloudtrail/server.js +235 -0
  18. package/src/services/cloudtrail/simulador.js +719 -0
  19. package/src/services/cloudwatch/index.js +84 -0
  20. package/src/services/cloudwatch/server.js +366 -0
  21. package/src/services/cloudwatch/simulador.js +1173 -0
  22. package/src/services/cognito/index.js +5 -0
  23. package/src/services/cognito/simulator.js +4 -0
  24. package/src/services/config/index.js +96 -0
  25. package/src/services/config/server.js +215 -0
  26. package/src/services/config/simulador.js +1260 -0
  27. package/src/services/dynamodb/index.js +7 -3
  28. package/src/services/dynamodb/server.js +4 -2
  29. package/src/services/dynamodb/simulator.js +39 -29
  30. package/src/services/eventbridge/index.js +55 -51
  31. package/src/services/eventbridge/server.js +209 -0
  32. package/src/services/eventbridge/simulator.js +684 -0
  33. package/src/services/index.js +30 -4
  34. package/src/services/kms/index.js +75 -0
  35. package/src/services/kms/server.js +67 -0
  36. package/src/services/kms/simulator.js +324 -0
  37. package/src/services/lambda/index.js +5 -0
  38. package/src/services/lambda/simulator.js +48 -38
  39. package/src/services/parameter-store/index.js +80 -0
  40. package/src/services/parameter-store/server.js +50 -0
  41. package/src/services/parameter-store/simulator.js +201 -0
  42. package/src/services/s3/index.js +7 -3
  43. package/src/services/s3/server.js +20 -13
  44. package/src/services/s3/simulator.js +163 -407
  45. package/src/services/secret-manager/index.js +80 -0
  46. package/src/services/secret-manager/server.js +50 -0
  47. package/src/services/secret-manager/simulator.js +171 -0
  48. package/src/services/sns/index.js +55 -42
  49. package/src/services/sns/server.js +580 -0
  50. package/src/services/sns/simulator.js +1482 -0
  51. package/src/services/sqs/index.js +2 -4
  52. package/src/services/sqs/server.js +4 -2
  53. package/src/services/xray/index.js +83 -0
  54. package/src/services/xray/server.js +308 -0
  55. package/src/services/xray/simulador.js +994 -0
  56. package/src/utils/cloudtrail-audit.js +129 -0
  57. package/src/utils/local-store.js +18 -2
@@ -31,6 +31,11 @@ class CognitoService {
31
31
  logger.debug('Cognito Service inicializado');
32
32
  }
33
33
 
34
+ injectDependencies(server) {
35
+ const ct = server.getService('cloudtrail');
36
+ if (ct?.simulator) this.simulator.audit.setTrail(ct.simulator);
37
+ }
38
+
34
39
  async start() {
35
40
  if (this.isRunning) return;
36
41
  await this.server.start();
@@ -9,6 +9,7 @@ const { v4: uuidv4 } = require('uuid');
9
9
  const logger = require('../../utils/logger');
10
10
  const LocalStore = require('../../utils/local-store');
11
11
  const path = require('path');
12
+ const { CloudTrailAudit } = require('../../utils/cloudtrail-audit');
12
13
 
13
14
  class CognitoSimulator {
14
15
  constructor(config) {
@@ -22,6 +23,7 @@ class CognitoSimulator {
22
23
  this.refreshTokens = new Map();
23
24
  this.accessTokens = new Map();
24
25
  this.jwtSecret = crypto.randomBytes(64).toString('hex');
26
+ this.audit = new CloudTrailAudit('cognito-idp.amazonaws.com');
25
27
  }
26
28
 
27
29
  async initialize() {
@@ -73,6 +75,7 @@ class CognitoSimulator {
73
75
  this.persistUserPools();
74
76
 
75
77
  logger.debug(`βœ… User Pool criado: ${PoolName} (${poolId})`);
78
+ this.audit.record({ eventName: 'CreateUserPool', readOnly: false, resources: [{ ARN: userPool.Arn, type: 'AWS::Cognito::UserPool' }], requestParameters: { poolName: PoolName } });
76
79
 
77
80
  return {
78
81
  UserPool: {
@@ -528,6 +531,7 @@ class CognitoSimulator {
528
531
  this.persistSessions();
529
532
 
530
533
  logger.debug(`πŸ” UsuΓ‘rio autenticado: ${username}`);
534
+ this.audit.record({ eventName: 'InitiateAuth', readOnly: false, resources: [{ ARN: userPool.Arn, type: 'AWS::Cognito::UserPool' }], requestParameters: { clientId: ClientId, authFlow: AuthFlow } });
531
535
 
532
536
  return {
533
537
  AuthenticationResult: {
@@ -0,0 +1,96 @@
1
+ 'use strict';
2
+
3
+ /**
4
+ * @fileoverview AWS Config Service
5
+ * Porta padrΓ£o: 4013
6
+ */
7
+
8
+ const http = require('http');
9
+ const path = require('path');
10
+ const { ConfigSimulator } = require('./simulador');
11
+ const { createConfigServer } = require('./server');
12
+ const LocalStore = require('../../utils/local-store');
13
+
14
+ class ConfigService {
15
+ constructor(config) {
16
+ this.config = config;
17
+ this.logger = require('../../utils/logger');
18
+ this.name = 'config';
19
+ this.port = config?.ports?.config || config?.services?.config?.port || 4013;
20
+ this.store = null;
21
+ this.simulator = null;
22
+ this._server = null;
23
+ this.isRunning = false;
24
+ }
25
+
26
+ async initialize() {
27
+ this.logger.debug(`Inicializando AWS Config Service na porta ${this.port}...`);
28
+ const dataDir = process.env.AWS_LOCAL_SIMULATOR_DATA_DIR;
29
+ this.store = new LocalStore(path.join(dataDir, 'config'));
30
+ this.simulator = new ConfigSimulator(this.config, this.store, this.logger);
31
+ await this.simulator.load();
32
+ this.logger.debug('AWS Config Service inicializado');
33
+ }
34
+
35
+ injectDependencies(server) {
36
+ if (!server) return;
37
+ const s3 = server.getService('s3');
38
+ if (s3?.simulator) this.simulator.s3Simulator = s3.simulator;
39
+ const sns = server.getService('sns');
40
+ if (sns?.simulator) this.simulator.snsSimulator = sns.simulator;
41
+ const lambda = server.getService('lambda');
42
+ if (lambda?.simulator) this.simulator.lambdaSimulator = lambda.simulator;
43
+ const dynamo = server.getService('dynamodb');
44
+ if (dynamo?.simulator) this.simulator.dynamoSimulator = dynamo.simulator;
45
+ const ct = server.getService('cloudtrail');
46
+ if (ct?.simulator) this.simulator.cloudtrailSimulator = ct.simulator;
47
+ }
48
+
49
+ async start() {
50
+ if (this.isRunning) return;
51
+ const { handler } = createConfigServer(this.simulator, this.logger);
52
+ this._server = http.createServer((req, res) => {
53
+ handler(req, res).catch(err => {
54
+ this.logger.error('[Config] Unhandled error:', err);
55
+ if (!res.headersSent) {
56
+ res.writeHead(500, { 'Content-Type': 'application/x-amz-json-1.1' });
57
+ res.end(JSON.stringify({ __type: 'InternalFailure', message: err.message }));
58
+ }
59
+ });
60
+ });
61
+ return new Promise((resolve, reject) => {
62
+ this._server.listen(this.port, '0.0.0.0', (err) => {
63
+ if (err) return reject(err);
64
+ this.isRunning = true;
65
+ this.logger.debug(`AWS Config rodando na porta ${this.port}`);
66
+ resolve();
67
+ });
68
+ });
69
+ }
70
+
71
+ async stop() {
72
+ if (!this.isRunning || !this._server) return;
73
+ await new Promise((resolve) => this._server.close(resolve));
74
+ this.simulator._stopRecording?.();
75
+ this._server = null;
76
+ this.isRunning = false;
77
+ }
78
+
79
+ async reset() {
80
+ this.simulator.reset();
81
+ await this.simulator.save();
82
+ }
83
+
84
+ getStatus() {
85
+ return {
86
+ running: this.isRunning,
87
+ port: this.port,
88
+ endpoint: `http://localhost:${this.port}`,
89
+ ...this.simulator?.getStatus(),
90
+ };
91
+ }
92
+
93
+ getSimulator() { return this.simulator; }
94
+ }
95
+
96
+ module.exports = { ConfigService };
@@ -0,0 +1,215 @@
1
+ 'use strict';
2
+
3
+ /**
4
+ * @fileoverview AWS Config HTTP Server
5
+ *
6
+ * Protocolo: JSON com header X-Amz-Target
7
+ * CompatΓ­vel com @aws-sdk/client-config-service (ConfigServiceClient)
8
+ *
9
+ * Target prefix: com.amazonaws.config.v20141112.
10
+ *
11
+ * Rotas admin:
12
+ * GET /__admin/rules β†’ lista config rules
13
+ * GET /__admin/recorders β†’ lista recorders
14
+ * GET /__admin/resources β†’ lista recursos descobertos
15
+ * GET /__admin/health β†’ health check
16
+ * POST /__admin/reset β†’ reset state
17
+ * POST /__internal/record-resource β†’ registra recurso (cross-service)
18
+ */
19
+
20
+ function createConfigServer(simulator, logger) {
21
+ function parseBody(req) {
22
+ return new Promise((resolve, reject) => {
23
+ let data = '';
24
+ req.on('data', chunk => (data += chunk));
25
+ req.on('end', () => {
26
+ try {
27
+ resolve(data ? JSON.parse(data) : {});
28
+ } catch {
29
+ resolve({});
30
+ }
31
+ });
32
+ req.on('error', reject);
33
+ });
34
+ }
35
+
36
+ function sendJson(res, statusCode, body) {
37
+ const payload = JSON.stringify(body);
38
+ res.writeHead(statusCode, {
39
+ 'Content-Type': 'application/x-amz-json-1.1',
40
+ 'Content-Length': Buffer.byteLength(payload),
41
+ 'x-amzn-RequestId': require('crypto').randomUUID(),
42
+ });
43
+ res.end(payload);
44
+ }
45
+
46
+ function sendError(res, err) {
47
+ const statusCode = err.statusCode || 400;
48
+ const code = err.code || 'InternalError';
49
+ logger.error(`[Config] Error: ${code} β€” ${err.message}`);
50
+ sendJson(res, statusCode, {
51
+ __type: code,
52
+ message: err.message,
53
+ });
54
+ }
55
+
56
+ // Mapeamento target β†’ mΓ©todo do simulador
57
+ const TARGET_MAP = {
58
+ // Configuration Recorders
59
+ 'PutConfigurationRecorder': (body) => simulator.putConfigurationRecorder(body),
60
+ 'DeleteConfigurationRecorder': (body) => simulator.deleteConfigurationRecorder(body),
61
+ 'DescribeConfigurationRecorders': (body) => simulator.describeConfigurationRecorders(body),
62
+ 'DescribeConfigurationRecorderStatus': (body) => simulator.describeConfigurationRecorderStatus(body),
63
+ 'StartConfigurationRecorder': (body) => simulator.startConfigurationRecorder(body),
64
+ 'StopConfigurationRecorder': (body) => simulator.stopConfigurationRecorder(body),
65
+
66
+ // Delivery Channels
67
+ 'PutDeliveryChannel': (body) => simulator.putDeliveryChannel(body),
68
+ 'DeleteDeliveryChannel': (body) => simulator.deleteDeliveryChannel(body),
69
+ 'DescribeDeliveryChannels': (body) => simulator.describeDeliveryChannels(body),
70
+ 'DescribeDeliveryChannelStatus': (body) => simulator.describeDeliveryChannelStatus(body),
71
+ 'DeliverConfigSnapshot': (body) => simulator.deliverConfigSnapshot(body),
72
+
73
+ // Config Rules
74
+ 'PutConfigRule': (body) => simulator.putConfigRule(body),
75
+ 'DeleteConfigRule': (body) => simulator.deleteConfigRule(body),
76
+ 'DescribeConfigRules': (body) => simulator.describeConfigRules(body),
77
+ 'DescribeConfigRuleEvaluationStatus': (body) => simulator.describeConfigRuleEvaluationStatus(body),
78
+ 'StartConfigRulesEvaluation': (body) => simulator.startConfigRulesEvaluation(body),
79
+ 'GetComplianceDetailsByConfigRule': (body) => simulator.getComplianceDetailsByConfigRule(body),
80
+ 'GetComplianceDetailsByResource': (body) => simulator.getComplianceDetailsByResource(body),
81
+ 'GetComplianceSummaryByConfigRule': (body) => simulator.getComplianceSummaryByConfigRule(body),
82
+ 'GetComplianceSummaryByResourceType': (body) => simulator.getComplianceSummaryByResourceType(body),
83
+
84
+ // Resource Configuration
85
+ 'GetResourceConfigHistory': (body) => simulator.getResourceConfigHistory(body),
86
+ 'ListDiscoveredResources': (body) => simulator.listDiscoveredResources(body),
87
+ 'GetDiscoveredResourceCounts': (body) => simulator.getDiscoveredResourceCounts(body),
88
+ 'BatchGetResourceConfig': (body) => simulator.batchGetResourceConfig(body),
89
+
90
+ // Conformance Packs
91
+ 'PutConformancePack': (body) => simulator.putConformancePack(body),
92
+ 'DeleteConformancePack': (body) => simulator.deleteConformancePack(body),
93
+ 'DescribeConformancePacks': (body) => simulator.describeConformancePacks(body),
94
+ 'DescribeConformancePackStatus': (body) => simulator.describeConformancePackStatus(body),
95
+ 'GetConformancePackComplianceSummary': (body) => simulator.getConformancePackComplianceSummary(body),
96
+
97
+ // Aggregators
98
+ 'PutConfigurationAggregator': (body) => simulator.putConfigurationAggregator(body),
99
+ 'DeleteConfigurationAggregator': (body) => simulator.deleteConfigurationAggregator(body),
100
+ 'DescribeConfigurationAggregators': (body) => simulator.describeConfigurationAggregators(body),
101
+
102
+ // Remediation
103
+ 'PutRemediationConfigurations': (body) => simulator.putRemediationConfigurations(body),
104
+ 'DeleteRemediationConfigurations': (body) => simulator.deleteRemediationConfigurations(body),
105
+ 'DescribeRemediationConfigurations': (body) => simulator.describeRemediationConfigurations(body),
106
+ 'StartRemediationExecution': (body) => simulator.startRemediationExecution(body),
107
+
108
+ // Tags
109
+ 'TagResource': (body) => simulator.tagResource(body),
110
+ 'UntagResource': (body) => simulator.untagResource(body),
111
+ 'ListTagsForResource': (body) => simulator.listTagsForResource(body),
112
+ };
113
+
114
+ async function handler(req, res) {
115
+ const url = req.url || '/';
116
+ const method = req.method || 'GET';
117
+
118
+ // ── Rota interna cross-service ────────────────────────────────────────────
119
+ if (url === '/__internal/record-resource' && method === 'POST') {
120
+ try {
121
+ const body = await parseBody(req);
122
+ simulator.recordResource(body.resourceType, body.resourceId, body.configuration);
123
+ return sendJson(res, 200, { ok: true });
124
+ } catch (err) {
125
+ return sendError(res, err);
126
+ }
127
+ }
128
+
129
+ // ── Rotas admin ───────────────────────────────────────────────────────────
130
+ if (url.startsWith('/__admin')) {
131
+ try {
132
+ if (url === '/__admin/health' && method === 'GET') {
133
+ return sendJson(res, 200, { status: 'ok', service: 'config', ...simulator.getStatus() });
134
+ }
135
+
136
+ if (url === '/__admin/rules' && method === 'GET') {
137
+ return sendJson(res, 200, {
138
+ rules: Array.from(simulator.configRules.values()),
139
+ total: simulator.configRules.size,
140
+ });
141
+ }
142
+
143
+ if (url === '/__admin/recorders' && method === 'GET') {
144
+ return sendJson(res, 200, {
145
+ recorders: Array.from(simulator.recorders.values()),
146
+ status: Array.from(simulator.recorderStatus.values()),
147
+ });
148
+ }
149
+
150
+ if (url === '/__admin/resources' && method === 'GET') {
151
+ return sendJson(res, 200, {
152
+ resources: Array.from(simulator.discoveredResources.values()),
153
+ total: simulator.discoveredResources.size,
154
+ });
155
+ }
156
+
157
+ if (url === '/__admin/conformance-packs' && method === 'GET') {
158
+ return sendJson(res, 200, {
159
+ packs: Array.from(simulator.conformancePacks.values()),
160
+ total: simulator.conformancePacks.size,
161
+ });
162
+ }
163
+
164
+ if (url === '/__admin/aggregators' && method === 'GET') {
165
+ return sendJson(res, 200, {
166
+ aggregators: Array.from(simulator.aggregators.values()),
167
+ total: simulator.aggregators.size,
168
+ });
169
+ }
170
+
171
+ if (url === '/__admin/reset' && method === 'POST') {
172
+ simulator.reset();
173
+ return sendJson(res, 200, { ok: true, message: 'Config state reset' });
174
+ }
175
+
176
+ return sendJson(res, 404, { __type: 'ResourceNotFoundException', message: `Admin route not found: ${url}` });
177
+ } catch (err) {
178
+ return sendError(res, err);
179
+ }
180
+ }
181
+
182
+ // ── Rota principal AWS Config API ─────────────────────────────────────────
183
+ if (method === 'POST' && (url === '/' || url === '')) {
184
+ const rawTarget = req.headers['x-amz-target'] || '';
185
+ // Remove prefixo: "com.amazonaws.config.v20141112.ConfigService."
186
+ const action = rawTarget.split('.').pop();
187
+
188
+ if (!action || !TARGET_MAP[action]) {
189
+ return sendJson(res, 400, {
190
+ __type: 'InvalidAction',
191
+ message: `Unknown action: ${rawTarget}`,
192
+ });
193
+ }
194
+
195
+ try {
196
+ const body = await parseBody(req);
197
+ logger.debug(`[Config] Action: ${action}`);
198
+ const result = await TARGET_MAP[action](body);
199
+ return sendJson(res, 200, result || {});
200
+ } catch (err) {
201
+ return sendError(res, err);
202
+ }
203
+ }
204
+
205
+ // 404 fallback
206
+ sendJson(res, 404, {
207
+ __type: 'ResourceNotFoundException',
208
+ message: `Route not found: ${method} ${url}`,
209
+ });
210
+ }
211
+
212
+ return { handler };
213
+ }
214
+
215
+ module.exports = { createConfigServer };