-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.json
1830 lines (1830 loc) · 68.5 KB
/
config.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "AmazonEC2",
"viewName": "AWS EC2",
"type": "executer",
"main": "app.js",
"execProgram": "node",
"exposeRoute": false,
"imgUrl": "logo.png",
"version": "3.3.0",
"description": "Amazon Elastic Cloud Compute - compute capacity in the cloud",
"category": [
"Compute"
],
"keywords": [
"aws",
"ec2",
"elastic",
"compute",
"amazon",
"cloud",
"instance",
"terminate",
"key pair",
"address",
"subnet",
"vpc",
"gateway",
"snapshot",
"route table",
"volume",
"security group"
],
"auth": {
"authId": "awsAccount",
"params": [
{
"name": "accessKeyId",
"viewName": "Access Key ID",
"type": "vault",
"required": true,
"description": "AWS Access Key ID to use for authentication",
"placeholder": "AKIAIOSFODNN7EXAMPLE",
"learnUrl": "https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html#Using_CreateAccessKey"
},
{
"name": "secretAccessKey",
"viewName": "Secret Access Key",
"type": "vault",
"required": true,
"description": "AWS Secret Access Key to use for authentication",
"placeholder": "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY",
"learnUrl": "https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html#Using_CreateAccessKey"
}
]
},
"settings": [
{
"name": "region",
"viewName": "Default AWS Region",
"type": "string",
"description": "AWS Region to use by default",
"placeholder": "us-west-1",
"learnUrl": "https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints"
}
],
"methods": [
{
"name": "createInstance",
"viewName": "Create Instance",
"params": [
{
"name": "region",
"viewName": "Region",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listRegions",
"description": "AWS region in which the action is to be executed",
"placeholder": "us-west-1",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html"
},
{
"name": "IMAGE_ID",
"viewName": "AMI Image ID",
"type": "string",
"placeholder": "ami-0effcafbe4e502297",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/finding-an-ami.html",
"description": "An AMI is a template that contains the software configuration (operating system, application server, and applications) required to launch an instance."
},
{
"name": "INSTANCE_TYPE",
"viewName": "instance type",
"type": "string",
"placeholder": "c5.large",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html",
"description": "Instance type determines quantity and type of computing, memory, networking, and disk resources made available to the instance."
},
{
"name": "KEY_NAME",
"viewName": "Key Pair Name",
"type": "string",
"placeholder": "Dev us-west-1 key",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html",
"description": "Key pair name determines which private .pem or .ppk key may be used to access the new instance."
},
{
"name": "SECURITY_GROUP_IDS",
"viewName": "Security Group IDs",
"type": "text",
"parserType": "array",
"placeholder": "sg-0732f974a2bb68872\nsg-0a6d722bdcf84d883",
"learnUrl": "https://docs.aws.amazon.com/vpc/latest/userguide/VPC_SecurityGroups.html",
"description": "Security Groups act as firewall rules, determining which sorts of network traffic are allowed in and out of the instance. Specify one per line."
},
{
"name": "USER_DATA",
"viewName": "User Data",
"type": "text",
"placeholder": "#!/bin/bash\nyum update -y",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/user-data.html",
"description": "User data is a command or script that is automatically run after the instance is launched."
},
{
"name": "MIN_COUNT",
"viewName": "Minimum Instances",
"type": "string",
"parserType": "number",
"required": true,
"default": "1",
"placeholder": "1",
"description": "Minimum number of instances to launch, if launching more than one"
},
{
"name": "MAX_COUNT",
"viewName": "Maximum Instances",
"type": "string",
"parserType": "number",
"required": true,
"default": "1",
"placeholder": "1",
"description": "Maximum number of instances to launch, if launching more than one"
},
{
"name": "subnetId",
"viewName": "Subnet ID",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listSubnets",
"placeholder": "subnet-0e817ca542abc1001",
"learnUrl": "https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html",
"description": "The subnet on which the new instance will be networked"
},
{
"name": "NAME_TAG",
"viewName": "Name",
"type": "string",
"description": "Optionally specify the \"Name\" tag of the new instance.",
"placeholder": "New Instance 001",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html"
},
{
"name": "rootVolumeSize",
"viewName": "Root Volume Size",
"description": "The size of the root volume in GiB",
"type": "int",
"default": 50,
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/block-device-mapping-concepts.html"
},
{
"name": "TAGS_SPECIFICATION",
"viewName": "Tags",
"type": "text",
"parserType": "tags",
"placeholder": "ExpDate=20250101\nEnvironment=dev",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_TagSpecification.html",
"description": "Optional tags to apply to the resources during launch, as Key=Value pairs, one per line"
}
]
},
{
"name": "startInstances",
"viewName": "Start Instances",
"params": [
{
"name": "region",
"viewName": "Region",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listRegions",
"description": "AWS region in which the action is to be executed",
"placeholder": "us-west-1",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html"
},
{
"name": "INSTANCE_IDS",
"viewName": "Instance IDs",
"type": "text",
"parserType": "array",
"required": true,
"placeholder": "i-0be1543f4d4cf2736",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html",
"description": "The IDs of the instances to start, one per line"
}
]
},
{
"name": "stopInstances",
"viewName": "Stop Instances",
"params": [
{
"name": "region",
"viewName": "Region",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listRegions",
"description": "AWS region in which the action is to be executed",
"placeholder": "us-west-1",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html"
},
{
"name": "INSTANCE_IDS",
"viewName": "Instance IDs",
"type": "text",
"parserType": "array",
"required": true,
"placeholder": "i-0be1543f4d4cf2736",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html",
"description": "The IDs of the instances to stop, one per line"
},
{
"name": "WAIT_FOR_STOP",
"viewName": "Wait for Stopped State",
"description": "Wait for the specified instances to stop completely before continuing with pipeline",
"type": "boolean",
"default": false
}
]
},
{
"name": "rebootInstances",
"viewName": "Reboot Instances",
"params": [
{
"name": "region",
"viewName": "Region",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listRegions",
"description": "AWS region in which the action is to be executed",
"placeholder": "us-west-1",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html"
},
{
"name": "INSTANCE_IDS",
"viewName": "Instance IDs",
"type": "text",
"parserType": "array",
"required": true,
"placeholder": "i-0be1543f4d4cf2736",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html",
"description": "The IDs of the instances to reboot, one per line"
}
]
},
{
"name": "terminateInstances",
"viewName": "Terminate Instances",
"params": [
{
"name": "region",
"viewName": "Region",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listRegions",
"description": "AWS region in which the action is to be executed",
"placeholder": "us-west-1",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html"
},
{
"name": "INSTANCE_IDS",
"viewName": "Instance IDs",
"type": "string",
"parserType": "array",
"required": true,
"placeholder": "i-0be1543f4d4cf2736",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html",
"description": "The IDs of the instances to TERMINATE, one per line"
}
]
},
{
"name": "describeInstances",
"viewName": "Describe Instances",
"params": [
{
"name": "region",
"viewName": "Region",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listRegions",
"description": "AWS region in which the action is to be executed",
"placeholder": "us-west-1",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html"
},
{
"name": "INSTANCE_IDS",
"viewName": "Instance IDs",
"type": "text",
"parserType": "array",
"description": "Optional IDs of specific instances to describe, one per line. If empty all instances may be described.",
"placeholder": "i-0be1543f4d4cf2736",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html"
},
{
"name": "filters",
"viewName": "Filters",
"type": "text",
"parserType": "array",
"description": "Optional array of filters to select specific instances",
"placeholder": "[{\"Name\": \"instance-state-name\",\"Values\": [\"running\"]}]",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html"
},
{
"name": "DRYRUN",
"viewName": "Dry Run",
"type": "boolean",
"default": false,
"description": "Checks to see if credentials have sufficient privileges for the action without having any effect on AWS resources",
"learnUrl": "https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-help.html"
},
{
"name": "GET_ALL_RECURSIVELY",
"viewName": "Get All Results",
"type": "boolean",
"default": false,
"description": "If enabled, retrieves all results instead of only the first 1000 instances.",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html"
}
]
},
{
"name": "modifyInstanceType",
"viewName": "Modify Instance Type",
"params": [
{
"name": "region",
"viewName": "Region",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listRegions",
"description": "AWS region in which the action is to be executed",
"placeholder": "us-west-1",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html"
},
{
"name": "instanceIds",
"viewName": "Instance IDs",
"type": "text",
"parserType": "array",
"required": true,
"description": "The IDs of the instances to modify, one per line",
"placeholder": "i-0be1ac1f3d4cf2736"
},
{
"name": "instanceType",
"viewName": "Instance Type",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "getInstanceTypes",
"description": "Instance type determines quantity and type of computing, memory, networking, and disk resources made available to the instance.",
"placeholder": "c5.large",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html"
}
]
},
{
"name": "modifyInstanceAttribute",
"viewName": "Modify Instance Attribute",
"params": [
{
"name": "region",
"viewName": "Region",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listRegions",
"description": "AWS region in which the action is to be executed",
"placeholder": "us-west-1",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html"
},
{
"name": "instanceIds",
"viewName": "Instance IDs",
"type": "text",
"parserType": "array",
"required": true,
"description": "The IDs of the instances to modify, one per line",
"placeholder": "i-0be1543f4d4cf2736\ni-0481e6195a720ee46"
},
{
"name": "attribute",
"viewName": "Attribute",
"learnUrl": "https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/modify-instance-attribute.html",
"type": "options",
"required": true,
"default": "InstanceType",
"placeholder": "please select one",
"options": [
{
"id": "InstanceType",
"name": "InstanceType"
},
{
"id": "Kernel",
"name": "Kernel"
},
{
"id": "Ramdisk",
"name": "Ramdisk"
},
{
"id": "UserData",
"name": "UserData"
},
{
"id": "DisableApiTermination",
"name": "DisableApiTermination"
},
{
"id": "InstanceInitiatedShutdownBehavior",
"name": "InstanceInitiatedShutdownBehavior"
},
{
"id": "RootDeviceName",
"name": "RootDeviceName"
},
{
"id": "BlockDeviceMapping",
"name": "BlockDeviceMapping"
},
{
"id": "ProductCodes",
"name": "ProductCodes"
},
{
"id": "SourceDestCheck",
"name": "SourceDestCheck"
},
{
"id": "GroupSet",
"name": "GroupSet"
},
{
"id": "EbsOptimized",
"name": "EbsOptimized"
},
{
"id": "SriovNetSupport",
"name": "SriovNetSupport"
},
{
"id": "EnaSupport",
"name": "EnaSupport"
},
{
"id": "EnclaveOptions",
"name": "EnclaveOptions"
}
]
},
{
"name": "attributeValue",
"viewName": "Attribute Value",
"type": "string",
"required": true,
"placeholder": "",
"learnUrl": "https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/modify-instance-attribute.html",
"description": "A new value for the attribute"
},
{
"name": "dryRun",
"viewName": "Dry Run",
"type": "boolean",
"default": false,
"description": "Checks to see if credentials have sufficient privileges for the action without having any effect on AWS resources",
"learnUrl": "https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/modify-instance-attribute.html"
}
]
},
{
"name": "createKeyPair",
"viewName": "Create Key Pair",
"params": [
{
"name": "region",
"viewName": "Region",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listRegions",
"description": "AWS region in which the action is to be executed",
"placeholder": "us-west-1",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html"
},
{
"name": "KEY_PAIR_NAME",
"viewName": "Key Pair Name",
"type": "string",
"required": true,
"placeholder": "Dev us-west-1 key",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html",
"description": "A name for the new key pair."
}
]
},
{
"name": "deleteKeyPair",
"viewName": "Delete Key Pair",
"params": [
{
"name": "region",
"viewName": "Region",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listRegions",
"description": "AWS region in which the action is to be executed",
"placeholder": "us-west-1",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html"
},
{
"name": "KEY_PAIR_NAME",
"viewName": "Key Pair Name",
"type": "string",
"required": true,
"placeholder": "Dev us-west-1 key",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html",
"description": "The name of the key pair to delete."
}
]
},
{
"name": "describeKeyPairs",
"viewName": "Describe Key Pairs",
"params": [
{
"name": "region",
"viewName": "Region",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listRegions",
"description": "AWS region in which the action is to be executed",
"placeholder": "us-west-1",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html"
}
]
},
{
"name": "allocateAddress",
"viewName": "Allocate An Address",
"params": [
{
"name": "region",
"viewName": "Region",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listRegions",
"description": "AWS region in which the action is to be executed",
"placeholder": "us-west-1",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html"
},
{
"name": "ADDRESS",
"viewName": "Address",
"type": "string",
"placeholder": "192.168.20.20",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-instance-addressing.html",
"description": "The Elastic IP address to recover or an IPv4 address from an address pool."
},
{
"name": "PUBLICIPV4POOL",
"viewName": "Public IPv4 Pool",
"type": "string",
"placeholder": "ipv4pool-ec2-0533048da7d823723",
"learnUrl": "https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-public-ipv4-pools.html",
"description": "The ID of an address pool that you own. Use this parameter to let Amazon EC2 select an address from the address pool. To specify a specific address from the address pool, use the Address parameter instead."
},
{
"name": "DRYRUN",
"viewName": "Dry Run",
"type": "boolean",
"default": false,
"description": "Checks to see if credentials have sufficient privileges for the action without having any effect on AWS resources",
"learnUrl": "https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-help.html"
}
]
},
{
"name": "associateAddress",
"viewName": "Associate An Address",
"params": [
{
"name": "region",
"viewName": "Region",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listRegions",
"description": "AWS region in which the action is to be executed",
"placeholder": "us-west-1",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html"
},
{
"name": "ALLOCATION_ID",
"viewName": "Allocation Id",
"type": "string",
"required": true,
"placeholder": "eipalloc-0940f67a55db34d52",
"learnUrl": "https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-addresses.html",
"description": "The elastic IP allocation to be associated"
},
{
"name": "INSTANCE_ID",
"viewName": "Instance Id",
"type": "string",
"placeholder": "i-0be1543f4d4cf2736",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html",
"description": "ID of an instance if associating to an EC2 instance"
},
{
"name": "NETWORK_INTERFACE_ID",
"viewName": "Network Interface Id",
"type": "string",
"placeholder": "eni-0070b14946example",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html",
"description": "ID of an interface if associating to an elastic network interface"
},
{
"name": "PRIVATE_IP_ADDRESS",
"viewName": "Private Ip Address",
"type": "string",
"placeholder": "172.20.20.20",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-instance-addressing.html",
"description": "A private IP address if associating with an IP address"
},
{
"name": "DRYRUN",
"viewName": "Dry Run",
"type": "boolean",
"default": false,
"description": "Checks to see if credentials have sufficient privileges for the action without having any effect on AWS resources",
"learnUrl": "https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-help.html"
}
]
},
{
"name": "releaseAddress",
"viewName": "Release An Address",
"params": [
{
"name": "region",
"viewName": "Region",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listRegions",
"description": "AWS region in which the action is to be executed",
"placeholder": "us-west-1",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html"
},
{
"name": "ALLOCATION_ID",
"viewName": "Allocation Id",
"type": "string",
"description": "The elastic IP allocation to be released",
"placeholder": "eipalloc-0940f67a55db34d52",
"learnUrl": "https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-addresses.html"
},
{
"name": "DRYRUN",
"viewName": "Dry Run",
"type": "boolean",
"default": false,
"description": "Checks to see if credentials have sufficient privileges for the action without having any effect on AWS resources",
"learnUrl": "https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-help.html"
}
]
},
{
"name": "createVpc",
"viewName": "Create VPC",
"params": [
{
"name": "region",
"viewName": "Region",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listRegions",
"description": "AWS region in which the action is to be executed",
"placeholder": "us-west-1",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html"
},
{
"name": "cidrBlock",
"viewName": "CIDR Block",
"type": "string",
"required": true,
"description": "The IPv4 network range for the VPC, in CIDR notation",
"placeholder": "10.20.0.0/16",
"learnUrl": "https://docs.aws.amazon.com/vpc/latest/userguide/working-with-vpcs.html"
},
{
"name": "amazonProvidedIpv6CidrBlock",
"viewName": "Amazon Provided IPV6 Block",
"type": "boolean",
"default": false,
"description": "Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length for the VPC. The range of IP addresses and size of the CIDR block cannot be specified.",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/block-device-mapping-concepts.html"
},
{
"name": "instanceTenancy",
"viewName": "Instance Tenancy",
"type": "options",
"required": true,
"default": "default",
"placeholder": "please select one",
"options": [
{
"id": "default",
"name": "default"
},
{
"id": "dedicated",
"name": "dedicated"
}
],
"description": "Tenancy defines how EC2 instances are distributed across physical hardware and affects pricing. Dedicated Instances are Amazon EC2 instances that run in a VPC on hardware that's dedicated to a single customer.",
"learnUrl": "https://aws.amazon.com/ec2/pricing/dedicated-instances/"
},
{
"name": "createInternetGateway",
"viewName": "Create Internet Gateway",
"type": "boolean",
"default": false,
"description": "Create an Internet gateway and attach it the new VPC",
"learnUrl": "https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Internet_Gateway.html"
},
{
"name": "tags",
"viewName": "Tags",
"type": "text",
"parserType": "tags",
"description": "Optional tags to apply to AWS resources, as Key or Key=Value pairs, one per line",
"placeholder": "stack=production\nLinux\ndevGroup=TeamA",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html"
},
{
"name": "dryRun",
"viewName": "Dry Run",
"type": "boolean",
"default": false,
"description": "Checks to see if credentials have sufficient privileges for the action without having any effect on AWS resources",
"learnUrl": "https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-help.html"
}
]
},
{
"name": "deleteVpc",
"viewName": "Delete VPC",
"params": [
{
"name": "region",
"viewName": "Region",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listRegions",
"description": "AWS region in which the action is to be executed",
"placeholder": "us-west-1",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html"
},
{
"name": "vpcId",
"viewName": "VPC ID",
"type": "string",
"required": true,
"description": "The ID of the VPC to delete",
"placeholder": "vpc-07afa79bb4a0da65f",
"learnUrl": "https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html"
},
{
"name": "dryRun",
"viewName": "Dry Run",
"type": "boolean",
"default": false,
"description": "Checks to see if credentials have sufficient privileges for the action without having any effect on AWS resources",
"learnUrl": "https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-help.html "
}
]
},
{
"name": "createSubnet",
"viewName": "Create Subnet",
"params": [
{
"name": "region",
"viewName": "Region",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listRegions",
"description": "AWS region in which the action is to be executed",
"placeholder": "us-west-1",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html"
},
{
"name": "vpcId",
"viewName": "VPC ID",
"type": "string",
"required": true,
"description": "The ID of the VPC in which the subnet is to be created",
"placeholder": "vpc-07afa79bb4a0da65f",
"learnUrl": "https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc.html "
},
{
"name": "routeTableId",
"viewName": "Route Table ID",
"type": "string",
"description": "An optional existing route table ID to which the subnet should be associated",
"placeholder": "rtb-09ba434c1b1234567",
"learnUrl": "https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-route-tables.html"
},
{
"name": "availabilityZone",
"viewName": "Availability Zone",
"type": "string",
"description": "The availablility zone of the subnet - must be one within the specified region, commonly region ID + a, b, or c",
"placeholder": "us-west-1c",
"learnUrl": "https://docs.aws.amazon.com/AmazonElastiCache/latest/mem-ug/RegionsAndAZs.html"
},
{
"name": "cidrBlock",
"viewName": "CIDR Block",
"type": "string",
"description": "The IPv4 network range for the VPC, in CIDR notation. Must fall within range of VPC CIDR block.",
"placeholder": "10.20.0.0/16",
"learnUrl": "https://docs.aws.amazon.com/vpc/latest/userguide/working-with-vpcs.html"
},
{
"name": "ipv6CidrBlock",
"viewName": "IPv6 CIDR Block",
"type": "string",
"description": "The IPv6 network range for the subnet, in CIDR notation. The subnet size must use a /64 prefix length and fall within range of the VPC CIDR block.",
"placeholder": "2002::1234:abcd:ffff:c0a8:101/64",
"learnUrl": "https://docs.aws.amazon.com/vpc/latest/userguide/get-started-ipv6.html"
},
{
"name": "outpostArn",
"viewName": "Outpost ARN",
"type": "string",
"description": "The Amazon Resource Name (ARN) of the Outpost. If you specify an Outpost ARN, you must also specify the Availability Zone of the Outpost subnet.",
"placeholder": "arn:aws:outposts:us-west-2:123456789012:outpost/op-abcdef1234567890a",
"learnUrl": "https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html"
},
{
"name": "allocationId",
"viewName": "NAT Gateway Allocation ID",
"type": "string",
"description": "The allocation ID of an Elastic IP address to associate with the NAT gateway, to create and associate a NAT Gateway with the subnet",
"placeholder": "eipalloc-0940f67a55db34d52",
"learnUrl": "https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html"
},
{
"name": "createPrivateRouteTable",
"viewName": "Create Private Route Table",
"type": "boolean",
"default": false,
"description": "Creates a new route table and associates it with the subnet",
"learnUrl": "https://docs.aws.amazon.com/batch/latest/userguide/create-public-private-vpc.html"
},
{
"name": "mapPublicIpOnLaunch",
"viewName": "Auto-assign Public IP",
"type": "boolean",
"default": false,
"description": "Enables the auto-assign IP settings to automatically request a public IPv4 address for interfaces on the new subnet",
"learnUrl": "https://docs.aws.amazon.com/cli/latest/reference/ec2/modify-subnet-attribute.html"
},
{
"name": "tags",
"viewName": "Tags",
"type": "text",
"parserType": "tags",
"description": "Optional tags to apply to AWS resources, as Key or Key=Value pairs, one per line",
"placeholder": "stack=production\nLinux\ndevGroup=TeamA",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html"
},
{
"name": "dryRun",
"viewName": "Dry Run",
"type": "boolean",
"default": false,
"description": "Checks to see if credentials have sufficient privileges for the action without having any effect on AWS resources",
"learnUrl": "https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-help.html "
}
]
},
{
"name": "deleteSubnet",
"viewName": "Delete Subnet",
"params": [
{
"name": "region",
"viewName": "Region",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listRegions",
"description": "AWS region in which the action is to be executed",
"placeholder": "us-west-1",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html"
},
{
"name": "subnetId",
"viewName": "Subnet ID",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listSubnets",
"description": "The ID of the subnet to Delete.",
"placeholder": "192.168.255.255",
"learnUrl": "https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html"
},
{
"name": "dryRun",
"viewName": "Dry Run",
"type": "boolean",
"default": false,
"description": "Checks to see if credentials have sufficient privileges for the action without having any effect on AWS resources",
"learnUrl": "https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-help.html"
}
]
},
{
"name": "createNatGateway",
"viewName": "Create NAT Gateway",
"params": [
{
"name": "region",
"viewName": "Region",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listRegions",
"description": "AWS region in which the action is to be executed",
"placeholder": "us-west-1",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html"
},
{
"name": "subnetId",
"viewName": "Subnet ID",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listSubnets",
"description": "The subnet in which to create the NAT gateway",
"placeholder": "subnet-0e817ca542abc1001",
"learnUrl": "https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html"
},
{
"name": "allocationId",
"viewName": "Allocation ID",
"type": "string",
"required": true,
"description": "The allocation ID of an Elastic IP address to associate with the NAT gateway",
"placeholder": "eipalloc-0940f67a55db34d52",
"learnUrl": "https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-addresses.html"
},
{
"name": "tags",
"viewName": "Tags",
"type": "text",
"parserType": "tags",
"description": "Optional tags to apply to AWS resources, as Key or Key=Value pairs, one per line",
"placeholder": "stack=production\nLinux\ndevGroup=TeamA",
"learnUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html"
},
{
"name": "dryRun",