@stacksjs/ts-cloud 0.1.8 → 0.1.9
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/dist/bin/cli.js +1 -1
- package/package.json +18 -16
- package/src/aws/acm.ts +768 -0
- package/src/aws/application-autoscaling.ts +845 -0
- package/src/aws/bedrock.ts +4074 -0
- package/src/aws/client.ts +891 -0
- package/src/aws/cloudformation.ts +896 -0
- package/src/aws/cloudfront.ts +1531 -0
- package/src/aws/cloudwatch-logs.ts +154 -0
- package/src/aws/comprehend.ts +839 -0
- package/src/aws/connect.ts +1056 -0
- package/src/aws/deploy-imap.ts +384 -0
- package/src/aws/dynamodb.ts +340 -0
- package/src/aws/ec2.ts +1385 -0
- package/src/aws/ecr.ts +621 -0
- package/src/aws/ecs.ts +615 -0
- package/src/aws/elasticache.ts +301 -0
- package/src/aws/elbv2.ts +942 -0
- package/src/aws/email.ts +928 -0
- package/src/aws/eventbridge.ts +248 -0
- package/src/aws/iam.ts +1689 -0
- package/src/aws/imap-server.ts +2100 -0
- package/src/aws/index.ts +213 -0
- package/src/aws/kendra.ts +1097 -0
- package/src/aws/lambda.ts +786 -0
- package/src/aws/opensearch.ts +158 -0
- package/src/aws/personalize.ts +977 -0
- package/src/aws/polly.ts +559 -0
- package/src/aws/rds.ts +888 -0
- package/src/aws/rekognition.ts +846 -0
- package/src/aws/route53-domains.ts +359 -0
- package/src/aws/route53.ts +1046 -0
- package/src/aws/s3.ts +2334 -0
- package/src/aws/scheduler.ts +571 -0
- package/src/aws/secrets-manager.ts +769 -0
- package/src/aws/ses.ts +1081 -0
- package/src/aws/setup-phone.ts +104 -0
- package/src/aws/setup-sms.ts +580 -0
- package/src/aws/sms.ts +1735 -0
- package/src/aws/smtp-server.ts +531 -0
- package/src/aws/sns.ts +758 -0
- package/src/aws/sqs.ts +382 -0
- package/src/aws/ssm.ts +807 -0
- package/src/aws/sts.ts +92 -0
- package/src/aws/support.ts +391 -0
- package/src/aws/test-imap.ts +86 -0
- package/src/aws/textract.ts +780 -0
- package/src/aws/transcribe.ts +108 -0
- package/src/aws/translate.ts +641 -0
- package/src/aws/voice.ts +1379 -0
- package/src/config.ts +35 -0
- package/src/deploy/index.ts +7 -0
- package/src/deploy/static-site-external-dns.ts +945 -0
- package/src/deploy/static-site.ts +1175 -0
- package/src/dns/cloudflare.ts +548 -0
- package/src/dns/godaddy.ts +412 -0
- package/src/dns/index.ts +205 -0
- package/src/dns/porkbun.ts +362 -0
- package/src/dns/route53-adapter.ts +414 -0
- package/src/dns/types.ts +119 -0
- package/src/dns/validator.ts +369 -0
- package/src/generators/index.ts +5 -0
- package/src/generators/infrastructure.ts +1660 -0
- package/src/index.ts +163 -0
- package/src/push/apns.ts +452 -0
- package/src/push/fcm.ts +506 -0
- package/src/push/index.ts +58 -0
- package/src/security/pre-deploy-scanner.ts +655 -0
- package/src/ssl/acme-client.ts +478 -0
- package/src/ssl/index.ts +7 -0
- package/src/ssl/letsencrypt.ts +747 -0
- package/src/types.ts +2 -0
- package/src/utils/cli.ts +398 -0
- package/src/validation/index.ts +5 -0
- package/src/validation/template.ts +405 -0
package/src/aws/ssm.ts
ADDED
|
@@ -0,0 +1,807 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AWS SSM (Systems Manager) Parameter Store Client
|
|
3
|
+
* Manages parameters and secrets using direct API calls
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import { AWSClient } from './client'
|
|
7
|
+
|
|
8
|
+
export interface Parameter {
|
|
9
|
+
Name?: string
|
|
10
|
+
Type?: 'String' | 'StringList' | 'SecureString'
|
|
11
|
+
Value?: string
|
|
12
|
+
Version?: number
|
|
13
|
+
LastModifiedDate?: string
|
|
14
|
+
ARN?: string
|
|
15
|
+
DataType?: string
|
|
16
|
+
Description?: string
|
|
17
|
+
AllowedPattern?: string
|
|
18
|
+
KeyId?: string
|
|
19
|
+
Tier?: 'Standard' | 'Advanced' | 'Intelligent-Tiering'
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export interface ParameterHistory {
|
|
23
|
+
Name?: string
|
|
24
|
+
Type?: 'String' | 'StringList' | 'SecureString'
|
|
25
|
+
KeyId?: string
|
|
26
|
+
LastModifiedDate?: string
|
|
27
|
+
LastModifiedUser?: string
|
|
28
|
+
Description?: string
|
|
29
|
+
Value?: string
|
|
30
|
+
Version?: number
|
|
31
|
+
Labels?: string[]
|
|
32
|
+
Tier?: string
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export interface PutParameterOptions {
|
|
36
|
+
Name: string
|
|
37
|
+
Value: string
|
|
38
|
+
Type?: 'String' | 'StringList' | 'SecureString'
|
|
39
|
+
Description?: string
|
|
40
|
+
KeyId?: string
|
|
41
|
+
Overwrite?: boolean
|
|
42
|
+
AllowedPattern?: string
|
|
43
|
+
Tags?: { Key: string, Value: string }[]
|
|
44
|
+
Tier?: 'Standard' | 'Advanced' | 'Intelligent-Tiering'
|
|
45
|
+
DataType?: string
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export interface GetParameterOptions {
|
|
49
|
+
Name: string
|
|
50
|
+
WithDecryption?: boolean
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export interface GetParametersOptions {
|
|
54
|
+
Names: string[]
|
|
55
|
+
WithDecryption?: boolean
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export interface GetParametersByPathOptions {
|
|
59
|
+
Path: string
|
|
60
|
+
Recursive?: boolean
|
|
61
|
+
WithDecryption?: boolean
|
|
62
|
+
MaxResults?: number
|
|
63
|
+
NextToken?: string
|
|
64
|
+
ParameterFilters?: {
|
|
65
|
+
Key: string
|
|
66
|
+
Option?: string
|
|
67
|
+
Values?: string[]
|
|
68
|
+
}[]
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export interface DeleteParameterOptions {
|
|
72
|
+
Name: string
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* SSM Parameter Store client using direct API calls
|
|
77
|
+
*/
|
|
78
|
+
export class SSMClient {
|
|
79
|
+
private client: AWSClient
|
|
80
|
+
private region: string
|
|
81
|
+
|
|
82
|
+
constructor(region: string = 'us-east-1', profile?: string) {
|
|
83
|
+
this.region = region
|
|
84
|
+
this.client = new AWSClient()
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* Put a parameter to Parameter Store
|
|
89
|
+
*/
|
|
90
|
+
async putParameter(options: PutParameterOptions): Promise<{
|
|
91
|
+
Version?: number
|
|
92
|
+
Tier?: string
|
|
93
|
+
}> {
|
|
94
|
+
const params: Record<string, any> = {
|
|
95
|
+
Name: options.Name,
|
|
96
|
+
Value: options.Value,
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
if (options.Type) {
|
|
100
|
+
params.Type = options.Type
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
if (options.Description) {
|
|
104
|
+
params.Description = options.Description
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
if (options.KeyId) {
|
|
108
|
+
params.KeyId = options.KeyId
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
if (options.Overwrite !== undefined) {
|
|
112
|
+
params.Overwrite = options.Overwrite
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
if (options.AllowedPattern) {
|
|
116
|
+
params.AllowedPattern = options.AllowedPattern
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
if (options.Tags && options.Tags.length > 0) {
|
|
120
|
+
params.Tags = options.Tags
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
if (options.Tier) {
|
|
124
|
+
params.Tier = options.Tier
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
if (options.DataType) {
|
|
128
|
+
params.DataType = options.DataType
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
const result = await this.client.request({
|
|
132
|
+
service: 'ssm',
|
|
133
|
+
region: this.region,
|
|
134
|
+
method: 'POST',
|
|
135
|
+
path: '/',
|
|
136
|
+
headers: {
|
|
137
|
+
'X-Amz-Target': 'AmazonSSM.PutParameter',
|
|
138
|
+
'Content-Type': 'application/x-amz-json-1.1',
|
|
139
|
+
},
|
|
140
|
+
body: JSON.stringify(params),
|
|
141
|
+
})
|
|
142
|
+
|
|
143
|
+
return {
|
|
144
|
+
Version: result.Version,
|
|
145
|
+
Tier: result.Tier,
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* Get a parameter from Parameter Store
|
|
151
|
+
*/
|
|
152
|
+
async getParameter(options: GetParameterOptions): Promise<{
|
|
153
|
+
Parameter?: Parameter
|
|
154
|
+
}> {
|
|
155
|
+
const params: Record<string, any> = {
|
|
156
|
+
Name: options.Name,
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
if (options.WithDecryption !== undefined) {
|
|
160
|
+
params.WithDecryption = options.WithDecryption
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
const result = await this.client.request({
|
|
164
|
+
service: 'ssm',
|
|
165
|
+
region: this.region,
|
|
166
|
+
method: 'POST',
|
|
167
|
+
path: '/',
|
|
168
|
+
headers: {
|
|
169
|
+
'X-Amz-Target': 'AmazonSSM.GetParameter',
|
|
170
|
+
'Content-Type': 'application/x-amz-json-1.1',
|
|
171
|
+
},
|
|
172
|
+
body: JSON.stringify(params),
|
|
173
|
+
})
|
|
174
|
+
|
|
175
|
+
return {
|
|
176
|
+
Parameter: result.Parameter ? this.parseParameter(result.Parameter) : undefined,
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
/**
|
|
181
|
+
* Get multiple parameters from Parameter Store
|
|
182
|
+
*/
|
|
183
|
+
async getParameters(options: GetParametersOptions): Promise<{
|
|
184
|
+
Parameters?: Parameter[]
|
|
185
|
+
InvalidParameters?: string[]
|
|
186
|
+
}> {
|
|
187
|
+
const params: Record<string, any> = {
|
|
188
|
+
Names: options.Names,
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
if (options.WithDecryption !== undefined) {
|
|
192
|
+
params.WithDecryption = options.WithDecryption
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
const result = await this.client.request({
|
|
196
|
+
service: 'ssm',
|
|
197
|
+
region: this.region,
|
|
198
|
+
method: 'POST',
|
|
199
|
+
path: '/',
|
|
200
|
+
headers: {
|
|
201
|
+
'X-Amz-Target': 'AmazonSSM.GetParameters',
|
|
202
|
+
'Content-Type': 'application/x-amz-json-1.1',
|
|
203
|
+
},
|
|
204
|
+
body: JSON.stringify(params),
|
|
205
|
+
})
|
|
206
|
+
|
|
207
|
+
return {
|
|
208
|
+
Parameters: result.Parameters?.map((p: any) => this.parseParameter(p)),
|
|
209
|
+
InvalidParameters: result.InvalidParameters,
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* Get parameters by path (hierarchical)
|
|
215
|
+
*/
|
|
216
|
+
async getParametersByPath(options: GetParametersByPathOptions): Promise<{
|
|
217
|
+
Parameters?: Parameter[]
|
|
218
|
+
NextToken?: string
|
|
219
|
+
}> {
|
|
220
|
+
const params: Record<string, any> = {
|
|
221
|
+
Path: options.Path,
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
if (options.Recursive !== undefined) {
|
|
225
|
+
params.Recursive = options.Recursive
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
if (options.WithDecryption !== undefined) {
|
|
229
|
+
params.WithDecryption = options.WithDecryption
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
if (options.MaxResults) {
|
|
233
|
+
params.MaxResults = options.MaxResults
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
if (options.NextToken) {
|
|
237
|
+
params.NextToken = options.NextToken
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
if (options.ParameterFilters && options.ParameterFilters.length > 0) {
|
|
241
|
+
params.ParameterFilters = options.ParameterFilters
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
const result = await this.client.request({
|
|
245
|
+
service: 'ssm',
|
|
246
|
+
region: this.region,
|
|
247
|
+
method: 'POST',
|
|
248
|
+
path: '/',
|
|
249
|
+
headers: {
|
|
250
|
+
'X-Amz-Target': 'AmazonSSM.GetParametersByPath',
|
|
251
|
+
'Content-Type': 'application/x-amz-json-1.1',
|
|
252
|
+
},
|
|
253
|
+
body: JSON.stringify(params),
|
|
254
|
+
})
|
|
255
|
+
|
|
256
|
+
return {
|
|
257
|
+
Parameters: result.Parameters?.map((p: any) => this.parseParameter(p)),
|
|
258
|
+
NextToken: result.NextToken,
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
/**
|
|
263
|
+
* Delete a parameter from Parameter Store
|
|
264
|
+
*/
|
|
265
|
+
async deleteParameter(options: DeleteParameterOptions): Promise<void> {
|
|
266
|
+
const params: Record<string, any> = {
|
|
267
|
+
Name: options.Name,
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
await this.client.request({
|
|
271
|
+
service: 'ssm',
|
|
272
|
+
region: this.region,
|
|
273
|
+
method: 'POST',
|
|
274
|
+
path: '/',
|
|
275
|
+
headers: {
|
|
276
|
+
'X-Amz-Target': 'AmazonSSM.DeleteParameter',
|
|
277
|
+
'Content-Type': 'application/x-amz-json-1.1',
|
|
278
|
+
},
|
|
279
|
+
body: JSON.stringify(params),
|
|
280
|
+
})
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
/**
|
|
284
|
+
* Delete multiple parameters from Parameter Store
|
|
285
|
+
*/
|
|
286
|
+
async deleteParameters(names: string[]): Promise<{
|
|
287
|
+
DeletedParameters?: string[]
|
|
288
|
+
InvalidParameters?: string[]
|
|
289
|
+
}> {
|
|
290
|
+
const params: Record<string, any> = {
|
|
291
|
+
Names: names,
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
const result = await this.client.request({
|
|
295
|
+
service: 'ssm',
|
|
296
|
+
region: this.region,
|
|
297
|
+
method: 'POST',
|
|
298
|
+
path: '/',
|
|
299
|
+
headers: {
|
|
300
|
+
'X-Amz-Target': 'AmazonSSM.DeleteParameters',
|
|
301
|
+
'Content-Type': 'application/x-amz-json-1.1',
|
|
302
|
+
},
|
|
303
|
+
body: JSON.stringify(params),
|
|
304
|
+
})
|
|
305
|
+
|
|
306
|
+
return {
|
|
307
|
+
DeletedParameters: result.DeletedParameters,
|
|
308
|
+
InvalidParameters: result.InvalidParameters,
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
/**
|
|
313
|
+
* Describe parameters (metadata only, no values)
|
|
314
|
+
*/
|
|
315
|
+
async describeParameters(options?: {
|
|
316
|
+
Filters?: { Key: string, Values: string[] }[]
|
|
317
|
+
ParameterFilters?: { Key: string, Option?: string, Values?: string[] }[]
|
|
318
|
+
MaxResults?: number
|
|
319
|
+
NextToken?: string
|
|
320
|
+
}): Promise<{
|
|
321
|
+
Parameters?: Parameter[]
|
|
322
|
+
NextToken?: string
|
|
323
|
+
}> {
|
|
324
|
+
const params: Record<string, any> = {}
|
|
325
|
+
|
|
326
|
+
if (options?.Filters && options.Filters.length > 0) {
|
|
327
|
+
params.Filters = options.Filters
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
if (options?.ParameterFilters && options.ParameterFilters.length > 0) {
|
|
331
|
+
params.ParameterFilters = options.ParameterFilters
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
if (options?.MaxResults) {
|
|
335
|
+
params.MaxResults = options.MaxResults
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
if (options?.NextToken) {
|
|
339
|
+
params.NextToken = options.NextToken
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
const result = await this.client.request({
|
|
343
|
+
service: 'ssm',
|
|
344
|
+
region: this.region,
|
|
345
|
+
method: 'POST',
|
|
346
|
+
path: '/',
|
|
347
|
+
headers: {
|
|
348
|
+
'X-Amz-Target': 'AmazonSSM.DescribeParameters',
|
|
349
|
+
'Content-Type': 'application/x-amz-json-1.1',
|
|
350
|
+
},
|
|
351
|
+
body: JSON.stringify(params),
|
|
352
|
+
})
|
|
353
|
+
|
|
354
|
+
return {
|
|
355
|
+
Parameters: result.Parameters?.map((p: any) => this.parseParameter(p)),
|
|
356
|
+
NextToken: result.NextToken,
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
/**
|
|
361
|
+
* Get parameter history
|
|
362
|
+
*/
|
|
363
|
+
async getParameterHistory(options: {
|
|
364
|
+
Name: string
|
|
365
|
+
WithDecryption?: boolean
|
|
366
|
+
MaxResults?: number
|
|
367
|
+
NextToken?: string
|
|
368
|
+
}): Promise<{
|
|
369
|
+
Parameters?: ParameterHistory[]
|
|
370
|
+
NextToken?: string
|
|
371
|
+
}> {
|
|
372
|
+
const params: Record<string, any> = {
|
|
373
|
+
Name: options.Name,
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
if (options.WithDecryption !== undefined) {
|
|
377
|
+
params.WithDecryption = options.WithDecryption
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
if (options.MaxResults) {
|
|
381
|
+
params.MaxResults = options.MaxResults
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
if (options.NextToken) {
|
|
385
|
+
params.NextToken = options.NextToken
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
const result = await this.client.request({
|
|
389
|
+
service: 'ssm',
|
|
390
|
+
region: this.region,
|
|
391
|
+
method: 'POST',
|
|
392
|
+
path: '/',
|
|
393
|
+
headers: {
|
|
394
|
+
'X-Amz-Target': 'AmazonSSM.GetParameterHistory',
|
|
395
|
+
'Content-Type': 'application/x-amz-json-1.1',
|
|
396
|
+
},
|
|
397
|
+
body: JSON.stringify(params),
|
|
398
|
+
})
|
|
399
|
+
|
|
400
|
+
return {
|
|
401
|
+
Parameters: result.Parameters?.map((p: any) => ({
|
|
402
|
+
Name: p.Name,
|
|
403
|
+
Type: p.Type,
|
|
404
|
+
KeyId: p.KeyId,
|
|
405
|
+
LastModifiedDate: p.LastModifiedDate,
|
|
406
|
+
LastModifiedUser: p.LastModifiedUser,
|
|
407
|
+
Description: p.Description,
|
|
408
|
+
Value: p.Value,
|
|
409
|
+
Version: p.Version,
|
|
410
|
+
Labels: p.Labels,
|
|
411
|
+
Tier: p.Tier,
|
|
412
|
+
})),
|
|
413
|
+
NextToken: result.NextToken,
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
/**
|
|
418
|
+
* Label a parameter version
|
|
419
|
+
*/
|
|
420
|
+
async labelParameterVersion(options: {
|
|
421
|
+
Name: string
|
|
422
|
+
ParameterVersion?: number
|
|
423
|
+
Labels: string[]
|
|
424
|
+
}): Promise<{
|
|
425
|
+
InvalidLabels?: string[]
|
|
426
|
+
ParameterVersion?: number
|
|
427
|
+
}> {
|
|
428
|
+
const params: Record<string, any> = {
|
|
429
|
+
Name: options.Name,
|
|
430
|
+
Labels: options.Labels,
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
if (options.ParameterVersion !== undefined) {
|
|
434
|
+
params.ParameterVersion = options.ParameterVersion
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
const result = await this.client.request({
|
|
438
|
+
service: 'ssm',
|
|
439
|
+
region: this.region,
|
|
440
|
+
method: 'POST',
|
|
441
|
+
path: '/',
|
|
442
|
+
headers: {
|
|
443
|
+
'X-Amz-Target': 'AmazonSSM.LabelParameterVersion',
|
|
444
|
+
'Content-Type': 'application/x-amz-json-1.1',
|
|
445
|
+
},
|
|
446
|
+
body: JSON.stringify(params),
|
|
447
|
+
})
|
|
448
|
+
|
|
449
|
+
return {
|
|
450
|
+
InvalidLabels: result.InvalidLabels,
|
|
451
|
+
ParameterVersion: result.ParameterVersion,
|
|
452
|
+
}
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
/**
|
|
456
|
+
* Add tags to a parameter
|
|
457
|
+
*/
|
|
458
|
+
async addTagsToResource(options: {
|
|
459
|
+
ResourceType: 'Parameter'
|
|
460
|
+
ResourceId: string
|
|
461
|
+
Tags: { Key: string, Value: string }[]
|
|
462
|
+
}): Promise<void> {
|
|
463
|
+
const params: Record<string, any> = {
|
|
464
|
+
ResourceType: options.ResourceType,
|
|
465
|
+
ResourceId: options.ResourceId,
|
|
466
|
+
Tags: options.Tags,
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
await this.client.request({
|
|
470
|
+
service: 'ssm',
|
|
471
|
+
region: this.region,
|
|
472
|
+
method: 'POST',
|
|
473
|
+
path: '/',
|
|
474
|
+
headers: {
|
|
475
|
+
'X-Amz-Target': 'AmazonSSM.AddTagsToResource',
|
|
476
|
+
'Content-Type': 'application/x-amz-json-1.1',
|
|
477
|
+
},
|
|
478
|
+
body: JSON.stringify(params),
|
|
479
|
+
})
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
/**
|
|
483
|
+
* Remove tags from a parameter
|
|
484
|
+
*/
|
|
485
|
+
async removeTagsFromResource(options: {
|
|
486
|
+
ResourceType: 'Parameter'
|
|
487
|
+
ResourceId: string
|
|
488
|
+
TagKeys: string[]
|
|
489
|
+
}): Promise<void> {
|
|
490
|
+
const params: Record<string, any> = {
|
|
491
|
+
ResourceType: options.ResourceType,
|
|
492
|
+
ResourceId: options.ResourceId,
|
|
493
|
+
TagKeys: options.TagKeys,
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
await this.client.request({
|
|
497
|
+
service: 'ssm',
|
|
498
|
+
region: this.region,
|
|
499
|
+
method: 'POST',
|
|
500
|
+
path: '/',
|
|
501
|
+
headers: {
|
|
502
|
+
'X-Amz-Target': 'AmazonSSM.RemoveTagsFromResource',
|
|
503
|
+
'Content-Type': 'application/x-amz-json-1.1',
|
|
504
|
+
},
|
|
505
|
+
body: JSON.stringify(params),
|
|
506
|
+
})
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
/**
|
|
510
|
+
* List tags for a parameter
|
|
511
|
+
*/
|
|
512
|
+
async listTagsForResource(options: {
|
|
513
|
+
ResourceType: 'Parameter'
|
|
514
|
+
ResourceId: string
|
|
515
|
+
}): Promise<{
|
|
516
|
+
TagList?: { Key: string, Value: string }[]
|
|
517
|
+
}> {
|
|
518
|
+
const params: Record<string, any> = {
|
|
519
|
+
ResourceType: options.ResourceType,
|
|
520
|
+
ResourceId: options.ResourceId,
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
const result = await this.client.request({
|
|
524
|
+
service: 'ssm',
|
|
525
|
+
region: this.region,
|
|
526
|
+
method: 'POST',
|
|
527
|
+
path: '/',
|
|
528
|
+
headers: {
|
|
529
|
+
'X-Amz-Target': 'AmazonSSM.ListTagsForResource',
|
|
530
|
+
'Content-Type': 'application/x-amz-json-1.1',
|
|
531
|
+
},
|
|
532
|
+
body: JSON.stringify(params),
|
|
533
|
+
})
|
|
534
|
+
|
|
535
|
+
return {
|
|
536
|
+
TagList: result.TagList,
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
/**
|
|
541
|
+
* Helper: Set a string parameter
|
|
542
|
+
*/
|
|
543
|
+
async setString(name: string, value: string, options?: {
|
|
544
|
+
description?: string
|
|
545
|
+
overwrite?: boolean
|
|
546
|
+
tags?: { Key: string, Value: string }[]
|
|
547
|
+
}): Promise<{ Version?: number }> {
|
|
548
|
+
return this.putParameter({
|
|
549
|
+
Name: name,
|
|
550
|
+
Value: value,
|
|
551
|
+
Type: 'String',
|
|
552
|
+
Description: options?.description,
|
|
553
|
+
Overwrite: options?.overwrite ?? true,
|
|
554
|
+
Tags: options?.tags,
|
|
555
|
+
})
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
/**
|
|
559
|
+
* Helper: Set a secure string parameter (encrypted)
|
|
560
|
+
*/
|
|
561
|
+
async setSecureString(name: string, value: string, options?: {
|
|
562
|
+
description?: string
|
|
563
|
+
overwrite?: boolean
|
|
564
|
+
kmsKeyId?: string
|
|
565
|
+
tags?: { Key: string, Value: string }[]
|
|
566
|
+
}): Promise<{ Version?: number }> {
|
|
567
|
+
return this.putParameter({
|
|
568
|
+
Name: name,
|
|
569
|
+
Value: value,
|
|
570
|
+
Type: 'SecureString',
|
|
571
|
+
Description: options?.description,
|
|
572
|
+
Overwrite: options?.overwrite ?? true,
|
|
573
|
+
KeyId: options?.kmsKeyId,
|
|
574
|
+
Tags: options?.tags,
|
|
575
|
+
})
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
/**
|
|
579
|
+
* Helper: Get a parameter value (decrypted)
|
|
580
|
+
*/
|
|
581
|
+
async getValue(name: string): Promise<string | undefined> {
|
|
582
|
+
const result = await this.getParameter({
|
|
583
|
+
Name: name,
|
|
584
|
+
WithDecryption: true,
|
|
585
|
+
})
|
|
586
|
+
return result.Parameter?.Value
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
/**
|
|
590
|
+
* Helper: Get all parameters under a path
|
|
591
|
+
*/
|
|
592
|
+
async getAllByPath(path: string, recursive: boolean = true): Promise<Parameter[]> {
|
|
593
|
+
const allParams: Parameter[] = []
|
|
594
|
+
let nextToken: string | undefined
|
|
595
|
+
|
|
596
|
+
do {
|
|
597
|
+
const result = await this.getParametersByPath({
|
|
598
|
+
Path: path,
|
|
599
|
+
Recursive: recursive,
|
|
600
|
+
WithDecryption: true,
|
|
601
|
+
NextToken: nextToken,
|
|
602
|
+
})
|
|
603
|
+
|
|
604
|
+
if (result.Parameters) {
|
|
605
|
+
allParams.push(...result.Parameters)
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
nextToken = result.NextToken
|
|
609
|
+
} while (nextToken)
|
|
610
|
+
|
|
611
|
+
return allParams
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
/**
|
|
615
|
+
* Parse parameter response
|
|
616
|
+
*/
|
|
617
|
+
private parseParameter(p: any): Parameter {
|
|
618
|
+
return {
|
|
619
|
+
Name: p.Name,
|
|
620
|
+
Type: p.Type,
|
|
621
|
+
Value: p.Value,
|
|
622
|
+
Version: p.Version,
|
|
623
|
+
LastModifiedDate: p.LastModifiedDate,
|
|
624
|
+
ARN: p.ARN,
|
|
625
|
+
DataType: p.DataType,
|
|
626
|
+
Description: p.Description,
|
|
627
|
+
AllowedPattern: p.AllowedPattern,
|
|
628
|
+
KeyId: p.KeyId,
|
|
629
|
+
Tier: p.Tier,
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
/**
|
|
634
|
+
* Send a command to EC2 instances via SSM
|
|
635
|
+
*/
|
|
636
|
+
async sendCommand(options: {
|
|
637
|
+
InstanceIds: string[]
|
|
638
|
+
DocumentName: string
|
|
639
|
+
Parameters?: Record<string, string[]>
|
|
640
|
+
TimeoutSeconds?: number
|
|
641
|
+
Comment?: string
|
|
642
|
+
OutputS3BucketName?: string
|
|
643
|
+
OutputS3KeyPrefix?: string
|
|
644
|
+
}): Promise<{
|
|
645
|
+
CommandId?: string
|
|
646
|
+
Status?: string
|
|
647
|
+
StatusDetails?: string
|
|
648
|
+
}> {
|
|
649
|
+
const params: Record<string, any> = {
|
|
650
|
+
InstanceIds: options.InstanceIds,
|
|
651
|
+
DocumentName: options.DocumentName,
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
if (options.Parameters) {
|
|
655
|
+
params.Parameters = options.Parameters
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
if (options.TimeoutSeconds) {
|
|
659
|
+
params.TimeoutSeconds = options.TimeoutSeconds
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
if (options.Comment) {
|
|
663
|
+
params.Comment = options.Comment
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
if (options.OutputS3BucketName) {
|
|
667
|
+
params.OutputS3BucketName = options.OutputS3BucketName
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
if (options.OutputS3KeyPrefix) {
|
|
671
|
+
params.OutputS3KeyPrefix = options.OutputS3KeyPrefix
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
const result = await this.client.request({
|
|
675
|
+
service: 'ssm',
|
|
676
|
+
region: this.region,
|
|
677
|
+
method: 'POST',
|
|
678
|
+
path: '/',
|
|
679
|
+
headers: {
|
|
680
|
+
'X-Amz-Target': 'AmazonSSM.SendCommand',
|
|
681
|
+
'Content-Type': 'application/x-amz-json-1.1',
|
|
682
|
+
},
|
|
683
|
+
body: JSON.stringify(params),
|
|
684
|
+
})
|
|
685
|
+
|
|
686
|
+
return {
|
|
687
|
+
CommandId: result.Command?.CommandId,
|
|
688
|
+
Status: result.Command?.Status,
|
|
689
|
+
StatusDetails: result.Command?.StatusDetails,
|
|
690
|
+
}
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
/**
|
|
694
|
+
* Get command invocation result
|
|
695
|
+
*/
|
|
696
|
+
async getCommandInvocation(options: {
|
|
697
|
+
CommandId: string
|
|
698
|
+
InstanceId: string
|
|
699
|
+
}): Promise<{
|
|
700
|
+
Status?: string
|
|
701
|
+
StatusDetails?: string
|
|
702
|
+
StandardOutputContent?: string
|
|
703
|
+
StandardErrorContent?: string
|
|
704
|
+
ResponseCode?: number
|
|
705
|
+
}> {
|
|
706
|
+
const params = {
|
|
707
|
+
CommandId: options.CommandId,
|
|
708
|
+
InstanceId: options.InstanceId,
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
const result = await this.client.request({
|
|
712
|
+
service: 'ssm',
|
|
713
|
+
region: this.region,
|
|
714
|
+
method: 'POST',
|
|
715
|
+
path: '/',
|
|
716
|
+
headers: {
|
|
717
|
+
'X-Amz-Target': 'AmazonSSM.GetCommandInvocation',
|
|
718
|
+
'Content-Type': 'application/x-amz-json-1.1',
|
|
719
|
+
},
|
|
720
|
+
body: JSON.stringify(params),
|
|
721
|
+
})
|
|
722
|
+
|
|
723
|
+
return {
|
|
724
|
+
Status: result.Status,
|
|
725
|
+
StatusDetails: result.StatusDetails,
|
|
726
|
+
StandardOutputContent: result.StandardOutputContent,
|
|
727
|
+
StandardErrorContent: result.StandardErrorContent,
|
|
728
|
+
ResponseCode: result.ResponseCode,
|
|
729
|
+
}
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
/**
|
|
733
|
+
* Run a shell command on an EC2 instance and wait for result
|
|
734
|
+
*/
|
|
735
|
+
async runShellCommand(instanceId: string, commands: string[], options?: {
|
|
736
|
+
timeoutSeconds?: number
|
|
737
|
+
waitForCompletion?: boolean
|
|
738
|
+
pollIntervalMs?: number
|
|
739
|
+
maxWaitMs?: number
|
|
740
|
+
}): Promise<{
|
|
741
|
+
success: boolean
|
|
742
|
+
output?: string
|
|
743
|
+
error?: string
|
|
744
|
+
status?: string
|
|
745
|
+
}> {
|
|
746
|
+
const sendResult = await this.sendCommand({
|
|
747
|
+
InstanceIds: [instanceId],
|
|
748
|
+
DocumentName: 'AWS-RunShellScript',
|
|
749
|
+
Parameters: {
|
|
750
|
+
commands,
|
|
751
|
+
},
|
|
752
|
+
TimeoutSeconds: options?.timeoutSeconds || 600,
|
|
753
|
+
})
|
|
754
|
+
|
|
755
|
+
if (!sendResult.CommandId) {
|
|
756
|
+
return { success: false, error: 'Failed to send command' }
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
if (options?.waitForCompletion === false) {
|
|
760
|
+
return { success: true, status: 'Pending' }
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
// Poll for completion
|
|
764
|
+
const pollInterval = options?.pollIntervalMs || 2000
|
|
765
|
+
const maxWait = options?.maxWaitMs || 300000 // 5 minutes default
|
|
766
|
+
const startTime = Date.now()
|
|
767
|
+
|
|
768
|
+
while (Date.now() - startTime < maxWait) {
|
|
769
|
+
await new Promise(resolve => setTimeout(resolve, pollInterval))
|
|
770
|
+
|
|
771
|
+
try {
|
|
772
|
+
const invocation = await this.getCommandInvocation({
|
|
773
|
+
CommandId: sendResult.CommandId,
|
|
774
|
+
InstanceId: instanceId,
|
|
775
|
+
})
|
|
776
|
+
|
|
777
|
+
if (invocation.Status === 'Success') {
|
|
778
|
+
return {
|
|
779
|
+
success: true,
|
|
780
|
+
output: invocation.StandardOutputContent,
|
|
781
|
+
error: invocation.StandardErrorContent,
|
|
782
|
+
status: invocation.Status,
|
|
783
|
+
}
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
if (invocation.Status === 'Failed' || invocation.Status === 'Cancelled' || invocation.Status === 'TimedOut') {
|
|
787
|
+
return {
|
|
788
|
+
success: false,
|
|
789
|
+
output: invocation.StandardOutputContent,
|
|
790
|
+
error: invocation.StandardErrorContent || invocation.StatusDetails,
|
|
791
|
+
status: invocation.Status,
|
|
792
|
+
}
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
// Still pending/in progress, continue polling
|
|
796
|
+
}
|
|
797
|
+
catch (e: any) {
|
|
798
|
+
// InvocationDoesNotExist means command is still being sent
|
|
799
|
+
if (!e.message?.includes('InvocationDoesNotExist')) {
|
|
800
|
+
return { success: false, error: e.message }
|
|
801
|
+
}
|
|
802
|
+
}
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
return { success: false, error: 'Command timed out waiting for completion' }
|
|
806
|
+
}
|
|
807
|
+
}
|