-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathfiles.go
More file actions
2867 lines (1912 loc) · 105 KB
/
files.go
File metadata and controls
2867 lines (1912 loc) · 105 KB
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
package pike
import (
_ "embed" // required for embed
)
//go:embed mapping/aws/resource/network-firewall/aws_networkfirewall_resource_policy.json
var awsNetworkfirewallResourcePolicy []byte
//go:embed mapping/aws/resource/elasticloadbalancing/aws_lb_target_group.json
var awsLbTargetGroup []byte
//go:embed mapping/aws/resource/elasticloadbalancing/aws_lb_target_group_attachment.json
var awsLbTargetGroupAttachment []byte
//go:embed mapping/aws/resource/elasticloadbalancing/aws_lb_listener.json
var awsLbListener []byte
//go:embed mapping/aws/resource/elasticloadbalancing/aws_lb_listener_rule.json
var awsLbListenerRule []byte
//go:embed mapping/aws/resource/elasticloadbalancing/aws_lb.json
var awsLb []byte
//go:embed mapping/aws/resource/s3/aws_s3_bucket.json
var awsS3Bucket []byte
//go:embed mapping/aws/resource/s3/aws_s3_bucket_versioning.json
var awsS3BucketVersioning []byte
//go:embed mapping/aws/resource/s3/aws_s3_bucket_public_access_block.json
var awsS3BucketPublicAccessBlock []byte
//go:embed mapping/aws/resource/s3/aws_s3_bucket_logging.json
var awsS3BucketLogging []byte
//go:embed mapping/aws/resource/s3/aws_s3_bucket_lifecycle_configuration.json
var awsS3BucketLifecycleConfiguration []byte
//go:embed mapping/aws/resource/s3/aws_s3_bucket_policy.json
var awsS3BucketPolicy []byte
//go:embed mapping/aws/resource/s3/aws_s3_object.json
var awsS3Object []byte
//go:embed mapping/aws/resource/ec2/aws_instance.json
var awsInstance []byte
//go:embed mapping/aws/resource/ec2/aws_security_group.json
var awsSecurityGroup []byte
//go:embed mapping/aws/resource/ec2/aws_security_group_rule.json
var awsSecurityGroupRule []byte
//go:embed mapping/aws/resource/lambda/aws_lambda_function.json
var awsLambdaFunction []byte
//go:embed mapping/aws/resource/lambda/aws_lambda_alias.json
var awsLambdaAlias []byte
//go:embed mapping/aws/resource/lambda/aws_lambda_permission.json
var awsLambdaPermission []byte
//go:embed mapping/aws/resource/ec2/aws_subnet.json
var awsSubnet []byte
//go:embed mapping/aws/resource/mq/aws_mq_broker.json
var awsMqBroker []byte
//go:embed mapping/aws/resource/mq/aws_mq_configuration.json
var awsMqConfiguration []byte
//go:embed mapping/aws/resource/logs/aws_cloudwatch_log_group.json
var awsCloudwatchLogGroup []byte
//go:embed mapping/aws/resource/logs/aws_cloudwatch_log_stream.json
var awsCloudwatchLogStream []byte
//go:embed mapping/aws/resource/events/aws_cloudwatch_event_rule.json
var awsCloudwatchEventRule []byte
//go:embed mapping/aws/resource/logs/aws_cloudwatch_log_metric_filter.json
var awsCloudwatchLogMetricFilter []byte
//go:embed mapping/aws/resource/logs/aws_cloudwatch_log_resource_policy.json
var awsCloudwatchLogResourcePolicy []byte
//go:embed mapping/aws/resource/logs/aws_cloudwatch_log_subscription_filter.json
var awsCloudwatchLogSubscriptionFilter []byte
//go:embed mapping/aws/resource/cloudwatch/aws_cloudwatch_metric_alarm.json
var awsCloudwatchMetricAlarm []byte
//go:embed mapping/aws/resource/events/aws_cloudwatch_event_target.json
var awsCloudwatchEventTarget []byte
//go:embed mapping/aws/resource/route53/aws_route53_record.json
var awsRoute53Record []byte
//go:embed mapping/aws/resource/route53/aws_route53_zone.json
var awsRoute53Zone []byte
//go:embed mapping/aws/resource/route53/aws_route53_zone_association.json
var awsRoute53ZoneAssociation []byte
//go:embed mapping/aws/resource/sns/aws_sns_topic.json
var awsSnsTopic []byte
//go:embed mapping/aws/resource/sns/aws_sns_topic_subscription.json
var awsSnsTopicSubscription []byte
//go:embed mapping/aws/resource/sns/aws_sns_topic_policy.json
var awsSnsTopicPolicy []byte
//go:embed mapping/aws/resource/ec2/aws_key_pair.json
var awsKeyPair []byte
//go:embed mapping/aws/resource/rds/aws_db_instance.json
var awsDBInstance []byte
//go:embed mapping/aws/resource/rds/aws_db_cluster_snapshot.json
var awsDBClusterSnapshot []byte
//go:embed mapping/aws/resource/rds/aws_rds_cluster.json
var awsRdsCluster []byte
//go:embed mapping/aws/resource/rds/aws_rds_cluster_activity_stream.json
var awsRdsClusterActivityStream []byte
//go:embed mapping/aws/resource/rds/aws_rds_cluster_endpoint.json
var awsRdsClusterEndpoint []byte
//go:embed mapping/aws/resource/rds/aws_rds_cluster_role_association.json
var awsRdsClusterRoleAssociation []byte
//go:embed mapping/aws/resource/rds/aws_rds_global_cluster.json
var awsRdsGlobalCluster []byte
//go:embed mapping/aws/resource/dynamodb/aws_dynamodb_table.json
var awsDynamodbTable []byte
//go:embed mapping/aws/resource/ssm/aws_ssm_parameter.json
var awsSsmParameter []byte
//go:embed mapping/aws/resource/ec2/aws_route.json
var awsRoute []byte
//go:embed mapping/aws/resource/ec2/aws_default_security_group.json
var awsDefaultSecurityGroup []byte
//go:embed mapping/aws/resource/ec2/aws_default_subnet.json
var awsDefaultSubnet []byte
//go:embed mapping/aws/resource/rds/aws_db_subnet_group.json
var awsDBSubnetGroup []byte
//go:embed mapping/aws/resource/ec2/aws_vpn_connection.json
var awsVpnConnection []byte
//go:embed mapping/aws/resource/ec2/aws_vpn_gateway.json
var awsVpnGateway []byte
//go:embed mapping/aws/resource/apigateway/aws_api_gateway_rest_api.json
var awsAPIGatewayRestAPI []byte
//go:embed mapping/aws/resource/apigateway/aws_apigatewayv2_api.json
var awsAPIGatewayv2API []byte
//go:embed mapping/aws/resource/apigateway/aws_api_gateway_account.json
var awsAPIGatewayAccount []byte
//go:embed mapping/aws/resource/sqs/aws_sqs_queue.json
var awsSqsQueue []byte
//go:embed mapping/aws/resource/sqs/aws_sqs_queue_policy.json
var awsSqsQueuePolicy []byte
//go:embed mapping/aws/resource/ec2/aws_ebs_volume.json
var awsEbsVolume []byte
//go:embed mapping/aws/resource/autoscaling/aws_autoscaling_group.json
var awsAutoscalingGroup []byte
//go:embed mapping/aws/resource/autoscaling/aws_autoscaling_lifecycle_hook.json
var awsAutoscalingLifecycleHook []byte
//go:embed mapping/aws/resource/autoscaling/aws_autoscaling_notification.json
var awsAutoscalingNotification []byte
//go:embed mapping/aws/resource/autoscaling/aws_autoscaling_policy.json
var awsAutoscalingPolicy []byte
//go:embed mapping/aws/resource/autoscaling/aws_autoscaling_attachment.json
var awsAutoscalingAttachment []byte
//go:embed mapping/aws/resource/elasticloadbalancing/aws_elb.json
var awsElb []byte
//go:embed mapping/aws/resource/ec2/aws_internet_gateway.json
var awsInternetGateway []byte
//go:embed mapping/aws/resource/autoscaling/aws_launch_configuration.json
var awsLaunchConfiguration []byte
//go:embed mapping/aws/resource/ec2/aws_ec2_capacity_reservation.json
var awsEc2CapacityReservation []byte
//go:embed mapping/aws/resource/ec2/aws_network_interface.json
var awsNetworkInterface []byte
//go:embed mapping/aws/resource/ec2/aws_placement_group.json
var awsPlacementGroup []byte
//go:embed mapping/aws/resource/ec2/aws_spot_instance_request.json
var awsSpotInstanceRequest []byte
//go:embed mapping/aws/resource/ec2/aws_volume_attachment.json
var awsVolumeAttachment []byte
//go:embed mapping/aws/resource/firehose/aws_kinesis_firehose_delivery_stream.json
var awsKinesisFirehoseDeliveryStream []byte
//go:embed mapping/aws/resource/firehose/aws_kinesis_stream.json
var awsKinesisStream []byte
//go:embed mapping/aws/resource/budgets/aws_budgets_budget.json
var awsBudgetsBudget []byte
//go:embed mapping/aws/resource/elasticloadbalancing/aws_elastic_beanstalk_application.json
var awsElasticBeanstalkApplication []byte
//go:embed mapping/aws/resource/ec2/aws_flow_log.json
var awsFlowLog []byte
//go:embed mapping/aws/resource/ecr/aws_ecr_lifecycle_policy.json
var awsEcrLifecyclePolicy []byte
//go:embed mapping/aws/resource/ecr/aws_ecr_pull_through_cache_rule.json
var awsEcrPullThroughCacheRule []byte
//go:embed mapping/aws/resource/ecr/aws_ecr_registry_scanning_configuration.json
var awsEcrRegistryScanningConfiguration []byte
//go:embed mapping/aws/resource/ecr/aws_ecr_repository.json
var awsEcrRepository []byte
//go:embed mapping/aws/resource/ec2/aws_route_table.json
var awsRouteTable []byte
//go:embed mapping/aws/resource/ec2/aws_route_table_association.json
var awsRouteTableAssociation []byte
//go:embed mapping/aws/resource/ec2/aws_nat_gateway.json
var awsNatGateway []byte
//go:embed mapping/aws/resource/rds/aws_db_parameter_group.json
var awsDBParameterGroup []byte
//go:embed mapping/aws/resource/secretsmanager/aws_secretsmanager_secret.json
var awsSecretsmanagerSecret []byte
//go:embed mapping/aws/resource/secretsmanager/aws_secretsmanager_secret_version.json
var awsSecretsmanagerSecretVersion []byte
//go:embed mapping/aws/resource/ssm/aws_ssm_document.json
var awsSsmDocument []byte
//go:embed mapping/aws/resource/glue/aws_glue_classifier.json
var awsGlueClassifier []byte
//go:embed mapping/aws/resource/glue/aws_glue_crawler.json
var awsGlueCrawler []byte
//go:embed mapping/aws/resource/glue/aws_glue_catalog_database.json
var awsGlueCatalogDatabase []byte
//go:embed mapping/aws/resource/glue/aws_glue_catalog_table.json
var awsGlueCatalogTable []byte
//go:embed mapping/aws/resource/glue/aws_glue_connection.json
var awsGlueConnection []byte
//go:embed mapping/aws/resource/glue/aws_glue_data_catalog_encryption_settings.json
var awsGlueDataCatalogEncryptionSettings []byte
//go:embed mapping/aws/resource/glue/aws_glue_ml_transform.json
var awsGlueMlTransform []byte
//go:embed mapping/aws/resource/glue/aws_glue_trigger.json
var awsGlueTrigger []byte
//go:embed mapping/aws/resource/glue/aws_glue_job.json
var awsGlueJob []byte
//go:embed mapping/aws/resource/glue/aws_glue_registry.json
var awsGlueRegistry []byte
//go:embed mapping/aws/resource/glue/aws_glue_resource_policy.json
var awsGlueResourcePolicy []byte
//go:embed mapping/aws/resource/glue/aws_glue_schema.json
var awsGlueSchema []byte
//go:embed mapping/aws/resource/glue/aws_glue_security_configuration.json
var awsGlueSecurityConfiguration []byte
//go:embed mapping/aws/resource/glue/aws_glue_user_defined_function.json
var awsGlueUserDefinedFunction []byte
//go:embed mapping/aws/resource/glue/aws_glue_workflow.json
var awsGlueWorkflow []byte
//go:embed mapping/aws/resource/codebuild/aws_codebuild_project.json
var awsCodebuildProject []byte
//go:embed mapping/aws/resource/codecommit/aws_codecommit_repository.json
var awsCodecommitRepository []byte
//go:embed mapping/aws/resource/codepipeline/aws_codepipeline.json
var awsCodepipeline []byte
//go:embed mapping/aws/resource/codeartifact/aws_codeartifact_repository.json
var awsCodeartifactRepository []byte
//go:embed mapping/aws/resource/codear
9927
tifact/aws_codeartifact_domain.json
var awsCodeartifactDomain []byte
//go:embed mapping/aws/resource/codeartifact/aws_codeartifact_repository_permissions_policy.json
var awsCodeartifactRepositoryPermissionsPolicy []byte
//go:embed mapping/aws/resource/codeartifact/aws_codeartifact_domain_permissions_policy.json
var awsCodeartifactDomainPermissionsPolicy []byte
//go:embed mapping/aws/resource/ssm/aws_ssm_patch_baseline.json
var awsSsmPatchBaseline []byte
//go:embed mapping/aws/resource/ssm/aws_ssm_patch_group.json
var awsSsmPatchGroup []byte
//go:embed mapping/aws/resource/ssm/aws_ssm_maintenance_window.json
var awsSsmMaintenanceWindow []byte
//go:embed mapping/aws/resource/ssm/aws_ssm_maintenance_window_target.json
var awsSsmMaintenanceWindowTarget []byte
//go:embed mapping/aws/resource/ssm/aws_ssm_maintenance_window_task.json
var awsSsmMaintenanceWindowTask []byte
//go:embed mapping/aws/resource/ec2/aws_launch_template.json
var awsLaunchTemplate []byte
//go:embed mapping/aws/resource/directoryservice/aws_directory_service_directory.json
var awsDirectoryServiceDirectory []byte
//go:embed mapping/aws/resource/directoryservice/aws_directory_service_log_subscription.json
var awsDirectoryServiceLogSubscription []byte
//go:embed mapping/aws/resource/cloudtrail/aws_cloudtrail.json
var awsCloudtrail []byte
//go:embed mapping/aws/resource/rds/aws_rds_cluster_parameter_group.json
var awsRdsClusterParameterGroup []byte
//go:embed mapping/aws/resource/acm/aws_acm_certificate.json
var AWSAcmCertificate []byte
//go:embed mapping/aws/resource/ecs/aws_ecs_cluster.json
var awsEcsCluster []byte
//go:embed mapping/aws/resource/ecs/aws_ecs_task_definition.json
var awsEcsTaskDefinition []byte
//go:embed mapping/aws/resource/ecs/aws_ecs_service.json
var awsEcsService []byte
//go:embed mapping/aws/resource/application-autoscaling/aws_appautoscaling_scheduled_action.json
var awsAppautoscalingScheduledAction []byte
//go:embed mapping/aws/resource/application-autoscaling/aws_appautoscaling_target.json
var awsAppautoscalingTarget []byte
//go:embed mapping/aws/resource/application-autoscaling/aws_appautoscaling_policy.json
var awsAppautoscalingPolicy []byte
//go:embed mapping/aws/resource/cognito-idp/aws_cognito_identity_provider.json
var awsCognitoIdentityProvider []byte
//go:embed mapping/aws/resource/cognito-idp/aws_cognito_resource_server.json
var awsCognitoResourceServer []byte
//go:embed mapping/aws/resource/cognito-idp/aws_cognito_identity_provider.json
var awsCognitoRiskConfiguration []byte
//go:embed mapping/aws/resource/cognito-idp/aws_cognito_user.json
var awsCognitoUser []byte
//go:embed mapping/aws/resource/cognito-idp/aws_cognito_user_group.json
var awsCognitoUserGroup []byte
//go:embed mapping/aws/resource/cognito-idp/aws_cognito_user_in_group.json
var awsCognitoUserInGroup []byte
//go:embed mapping/aws/resource/cognito-idp/aws_cognito_user_pool.json
var awsCognitoUserPool []byte
//go:embed mapping/aws/resource/cognito-idp/aws_cognito_user_pool_client.json
var awsCognitoUserPoolClient []byte
//go:embed mapping/aws/resource/cognito-idp/aws_cognito_user_pool_domain.json
var awsCognitoUserPoolDomain []byte
//go:embed mapping/aws/resource/redshift/aws_redshift_subnet_group.json
var awsRedshiftSubnetGroup []byte
//go:embed mapping/aws/resource/redshift/aws_redshift_cluster.json
var awsRedshiftCluster []byte
//go:embed mapping/aws/resource/redshift/aws_redshift_scheduled_action.json
var awsRedshiftScheduledAction []byte
//go:embed mapping/aws/resource/redshift/aws_redshift_authentication_profile.json
var awsRedshiftAuthenticationProfile []byte
//go:embed mapping/aws/resource/redshift/aws_redshift_event_subscription.json
var awsRedshiftEventSubscription []byte
//go:embed mapping/aws/resource/redshift/aws_redshift_hsm_configuration.json
var awsRedshiftHsmConfiguration []byte
//go:embed mapping/aws/resource/redshift/aws_redshift_usage_limit.json
var awsRedshiftUsageLimit []byte
//go:embed mapping/aws/resource/redshift/aws_redshift_parameter_group.json
var awsRedshiftParameterGroup []byte
//go:embed mapping/aws/resource/redshift/aws_redshift_snapshot_copy_grant.json
var awsRedshiftSnapshotCopyGrant []byte
//go:embed mapping/aws/resource/redshift/aws_redshift_snapshot_schedule.json
var awsRedshiftSnapshotSchedule []byte
//go:embed mapping/aws/resource/redshift/aws_redshift_snapshot_schedule_association.json
var awsRedshiftSnapshotScheduleAssociation []byte
//go:embed mapping/aws/resource/inspector/aws_inspector_assessment_target.json
var awsInspectorAssessmentTarget []byte
//go:embed mapping/aws/resource/inspector/aws_inspector_assessment_template.json
var awsInspectorAssessmentTemplate []byte
//go:embed mapping/aws/resource/elasticfilesystem/aws_efs_access_point.json
var awsEfsAccessPoint []byte
//go:embed mapping/aws/resource/elasticfilesystem/aws_efs_file_system.json
var awsEfsFileSystem []byte
//go:embed mapping/aws/resource/elasticfilesystem/aws_efs_backup_policy.json
var awsEfsBackupPolicy []byte
//go:embed mapping/aws/resource/elasticfilesystem/aws_efs_file_system_policy.json
var awsEfsFileSystemPolicy []byte
//go:embed mapping/aws/resource/elasticfilesystem/aws_efs_mount_target.json
var awsEfsMountTarget []byte
//go:embed mapping/aws/resource/elasticfilesystem/aws_efs_replication_configuration.json
var awsEfsReplicationConfiguration []byte
//go:embed mapping/aws/resource/dax/aws_dax_parameter_group.json
var awsDaxParameterGroup []byte
//go:embed mapping/aws/resource/dax/aws_dax_subnet_group.json
var awsDaxSubnetGroup []byte
//go:embed mapping/aws/resource/elasticache/aws_elasticache_parameter_group.json
var awsElasticacheParameterGroup []byte
//go:embed mapping/aws/resource/elasticache/aws_elasticache_subnet_group.json
var awsElasticacheSubnetGroup []byte
//go:embed mapping/aws/resource/memorydb/aws_memorydb_subnet_group.json
var awsMemorydbSubnetGroup []byte
//go:embed mapping/aws/resource/servicecatalog/aws_servicecatalog_portfolio.json
var awsServicecatalogPortfolio []byte
//go:embed mapping/aws/resource/states/aws_sfn_activity.json
var awsSfnActivity []byte
//go:embed mapping/aws/resource/states/aws_sfn_state_machine.json
var awsSfnStateMachine []byte
//go:embed mapping/aws/resource/config/aws_config_config_rule.json
var awsConfigConfigRule []byte
//go:embed mapping/aws/resource/config/aws_config_configuration_aggregator.json
var awsConfigConfigurationAggregator []byte
//go:embed mapping/aws/resource/config/aws_config_configuration_recorder_status.json
var awsConfigConfigurationRecorderStatus []byte
//go:embed mapping/aws/resource/config/aws_config_configuration_recorder.json
var awsConfigConfigurationRecorder []byte
//go:embed mapping/aws/resource/config/aws_config_delivery_channel.json
var awsConfigDeliveryChannel []byte
//go:embed mapping/aws/resource/ec2/aws_ec2_tag.json
var awsEc2Tag []byte
//go:embed mapping/aws/resource/elasticache/aws_elasticache_cluster.json
var awsElasticacheCluster []byte
//go:embed mapping/aws/resource/elasticache/aws_elasticache_replication_group.json
var awsElasticacheReplicationGroup []byte
//go:embed mapping/aws/resource/es/aws_elasticsearch_domain.json
var awsElasticsearchDomain []byte
//go:embed mapping/aws/resource/es/aws_elasticsearch_domain_policy.json
var awsElasticsearchDomainPolicy []byte
//go:embed mapping/aws/resource/mediaconvert/aws_media_convert_queue.json
var awsMediaConvertQueue []byte
//go:embed mapping/aws/resource/imagebuilder/aws_imagebuilder_component.json
var awsImagebuilderComponent []byte
//go:embed mapping/aws/resource/imagebuilder/aws_imagebuilder_distribution_configuration.json
var awsImagebuilderDistributionConfiguration []byte
//go:embed mapping/aws/resource/imagebuilder/aws_imagebuilder_image.json
var awsImagebuilderImage []byte
//go:embed mapping/aws/resource/imagebuilder/aws_imagebuilder_image_pipeline.json
var awsImagebuilderImagePipeline []byte
//go:embed mapping/aws/resource/glacier/aws_glacier_vault_lock.json
var awsGlacierVaultLock []byte
//go:embed mapping/aws/resource/glacier/aws_glacier_vault.json
var awsGlacierVault []byte
//go:embed mapping/aws/resource/dlm/aws_dlm_lifecycle_policy.json
var awsDlmLifecyclePolicy []byte
//go:embed mapping/aws/resource/lambda/aws_lambda_layer_version.json
var awsLambdaLayerVersion []byte
//go:embed mapping/aws/resource/lambda/aws_lambda_layer_version_permission.json
var awsLambdaLayerVersionPermission []byte
//go:embed mapping/aws/resource/batch/aws_batch_compute_environment.json
var awsBatchComputeEnvironment []byte
//go:embed mapping/aws/resource/batch/aws_batch_job_definition.json
var awsBatchJobDefinition []byte
//go:embed mapping/aws/resource/batch/aws_batch_job_queue.json
var awsBatchJobQueue []byte
//go:embed mapping/aws/resource/batch/aws_batch_scheduling_policy.json
var awsBatchSchedulingPolicy []byte
//go:embed mapping/aws/resource/ecr/aws_ecr_repository_policy.json
var awsEcrRepositoryPolicy []byte
//go:embed mapping/aws/resource/ec2/aws_egress_only_internet_gateway.json
var awsEgressOnlyInternetGateway []byte
//go:embed mapping/aws/resource/ec2/aws_vpn_gateway_attachment.json
var awsVpnGatewayAttachment []byte
//go:embed mapping/aws/resource/ec2/aws_vpn_gateway_route_propagation.json
var awsVpnGatewayRoutePropagation []byte
//go:embed mapping/aws/resource/memorydb/aws_memorydb_cluster.json
var awsMemorydbCluster []byte
//go:embed mapping/aws/resource/memorydb/aws_memorydb_snapshot.json
var awsMemorydbSnapshot []byte
//go:embed mapping/aws/resource/ec2/aws_customer_gateway.json
var awsCustomerGateway []byte
//go:embed mapping/aws/resource/fsx/aws_fsx_openzfs_file_system.json
var awsFsxOpenzfsFileSystem []byte
//go:embed mapping/aws/resource/fsx/aws_fsx_openzfs_volume.json
var awsFsxOpenzfsVolume []byte
//go:embed mapping/aws/resource/codedeploy/aws_codedeploy_app.json
var awsCodedeployApp []byte
//go:embed mapping/aws/resource/codedeploy/aws_codedeploy_deployment_config.json
var awsCodedeployDeploymentConfig []byte
//go:embed mapping/aws/resource/codedeploy/aws_codedeploy_deployment_group.json
var awsCodedeployDeploymentGroup []byte
//go:embed mapping/aws/resource/network-firewall/aws_networkfirewall_firewall.json
var awsNetworkfirewallFirewall []byte
//go:embed mapping/aws/resource/network-firewall/aws_networkfirewall_firewall_policy.json
var awsNetworkfirewallFirewallPolicy []byte
//go:embed mapping/aws/resource/network-firewall/aws_networkfirewall_logging_configuration.json
var awsNetworkfirewallLoggingConfiguration []byte
//go:embed mapping/aws/resource/network-firewall/aws_networkfirewall_rule_group.json
var awsNetworkfirewallRuleGroup []byte
//go:embed mapping/aws/resource/lightsail/aws_lightsail_instance.json
var awsLightsailInstance []byte
//go:embed mapping/aws/resource/lightsail/aws_lightsail_instance_public_ports.json
var awsLightsailInstancePublicPorts []byte
//go:embed mapping/aws/resource/lightsail/aws_lightsail_key_pair.json
var awsLightsailKeyPair []byte
//go:embed mapping/aws/resource/lightsail/aws_lightsail_static_ip.json
var awsLightsailStaticIP []byte
//go:embed mapping/aws/resource/lightsail/aws_lightsail_static_ip_attachment.json
var awsLightsailStaticIPAttachment []byte
//go:embed mapping/aws/resource/medialive/aws_medialive_input.json
var awsMedialiveInput []byte
//go:embed mapping/aws/resource/medialive/aws_medialive_input_security_group.json
var awsMedialiveInputSecurityGroup []byte
//go:embed mapping/aws/resource/cloudfront/aws_cloudfront_origin_access_control.json
var awsCloudfrontOriginAccessControl []byte
//go:embed mapping/aws/resource/kafka/aws_msk_serverless_cluster.json
var awsMskServerlessCluster []byte
//go:embed mapping/aws/resource/kafka/aws_msk_cluster.json
var awsMskCluster []byte
//go:embed mapping/aws/resource/kafka/aws_msk_configuration.json
var awsMskConfiguration []byte
//go:embed mapping/aws/resource/kafka/aws_msk_scram_secret_association.json
var awsMskScramSecretAssociation []byte
//go:embed mapping/aws/resource/route53/aws_route53_delegation_set.json
var awsRoute53DelegationSet []byte
//go:embed mapping/aws/resource/route53/aws_route53_health_check.json
var awsRoute53HealthCheck []byte
//go:embed mapping/aws/resource/route53/aws_route53_query_log.json
var awsRoute53QueryLog []byte
//go:embed mapping/aws/resource/route53resolver/aws_route53_resolver_query_log_config.json
var awsRoute53ResolverQueryLogConfig []byte
//go:embed mapping/aws/resource/route53resolver/aws_route53_resolver_query_log_config_association.json
var awsRoute53ResolverQueryLogConfigAssociation []byte
//go:embed mapping/aws/resource/route53resolver/aws_route53_resolver_rule_association.json
var awsRoute53ResolverRuleAssociation []byte
//go:embed mapping/aws/resource/sagemaker/aws_sagemaker_endpoint_configuration.json
var awsSagemakerEndpointConfiguration []byte
//go:embed mapping/aws/resource/sagemaker/aws_sagemaker_model.json
var awsSagemakerModel []byte
//go:embed mapping/aws/resource/sqs/aws_sqs_queue_redrive_allow_policy.json
var awsSqsQueueRedriveAllowPolicy []byte
//go:embed mapping/aws/resource/sqs/aws_sqs_queue_redrive_policy.json
var awsSqsQueueRedrivePolicy []byte
//go:embed mapping/aws/resource/grafana/aws_grafana_workspace_api_key.json
var awsGrafanaWorkspaceAPIKey []byte
//go:embed mapping/aws/resource/ec2/aws_ec2_transit_gateway_route.json
var awsEc2TransitGatewayRoute []byte
//go:embed mapping/aws/resource/ec2/aws_ec2_transit_gateway.json
var awsEc2TransitGateway []byte
//go:embed mapping/aws/resource/ec2/aws_ec2_transit_gateway_route_table.json
var awsEc2TransitGatewayRouteTable []byte
//go:embed mapping/aws/resource/ec2/aws_ec2_transit_gateway_route_table_association.json
var awsEc2TransitGatewayRouteTableAssociation []byte
//go:embed mapping/aws/resource/ec2/aws_ec2_transit_gateway_route_table_propagation.json
var awsEc2TransitGatewayRouteTablePropagation []byte
//go:embed mapping/aws/resource/ec2/aws_ec2_network_insights_path.json
var awsEc2NetworkInsightsPath []byte
//go:embed mapping/aws/resource/ec2/aws_ec2_network_insights_analysis.json
var awsEc2NetworkInsightsAnalysis []byte
//go:embed mapping/aws/resource/appconfig/aws_appconfig_configuration_profile.json
var awsAppconfigConfigurationProfile []byte
//go:embed mapping/aws/resource/appconfig/aws_appconfig_application.json
var awsAppconfigApplication []byte
//go:embed mapping/aws/resource/dax/aws_dax_cluster.json
var awsDaxCluster []byte
//go:embed mapping/aws/resource/eks/aws_eks_cluster.json
var awsEksCluster []byte
//go:embed mapping/aws/resource/eks/aws_eks_addon.json
var awsEksAddon []byte
//go:embed mapping/aws/resource/eks/aws_eks_node_group.json
var awsEksNodeGroup []byte
//go:embed mapping/aws/resource/lambda/aws_lambda_event_source_mapping.json
var awsLambdaEventSourceMapping []byte
//go:embed mapping/aws/resource/lambda/aws_lambda_function_event_invoke_config.json
var awsLambdaFunctionEventInvokeConfig []byte
//go:embed mapping/aws/resource/lambda/aws_lambda_provisioned_concurrency_config.json
var awsLambdaProvisionedConcurrencyConfig []byte
//go:embed mapping/aws/resource/s3/aws_s3_bucket_accelerate_configuration.json
var awsS3BucketAccelerateConfiguration []byte
//go:embed mapping/aws/resource/s3/aws_s3_bucket_cors_configuration.json
var awsS3BucketCorsConfiguration []byte
//go:embed mapping/aws/resource/s3/aws_s3_bucket_intelligent_tiering_configuration.json
var awsS3BucketIntelligentTieringConfiguration []byte
//go:embed mapping/aws/resource/s3/aws_s3_bucket_metric.json
var awsS3BucketMetric []byte
//go:embed mapping/aws/resource/s3/aws_s3_bucket_ownership_controls.json
var awsS3BucketOwnershipControls []byte
//go:embed mapping/aws/resource/s3/aws_s3_bucket_replication_configuration.json
var awsS3BucketReplicationConfiguration []byte
//go:embed mapping/aws/resource/s3/aws_s3_bucket_request_payment_configuration.json
var awsS3BucketRequestPaymentConfiguration []byte
//go:embed mapping/aws/resource/s3/aws_s3_bucket_website_configuration.json
var awsS3BucketWebsiteConfiguration []byte
//go:embed mapping/aws/resource/cloud9/aws_cloud9_environment_ec2.json
var awsCloud9EnvironmentEc2 []byte
//go:embed mapping/aws/resource/s3/aws_s3_bucket_notification.json
var awsS3BucketNotification []byte
//go:embed mapping/aws/resource/rds/aws_neptune_cluster.json
var awsNeptuneCluster []byte
//go:embed mapping/aws/resource/rds/aws_neptune_cluster_endpoint.json
var awsNeptuneClusterEndpoint []byte
//go:embed mapping/aws/resource/rds/aws_neptune_cluster_instance.json
var awsNeptuneClusterInstance []byte
//go:embed mapping/aws/resource/rds/aws_neptune_event_subscription.json
var awsNeptuneEventSubscription []byte
//go:embed mapping/aws/resource/rds/aws_neptune_cluster_snapshot.json
var awsNeptuneClusterSnapshot []byte
//go:embed mapping/aws/resource/athena/aws_athena_data_catalog.json
var awsAthenaDataCatalog []byte
//go:embed mapping/aws/resource/athena/aws_athena_database.json
var awsAthenaDatabase []byte
//go:embed mapping/aws/resource/athena/aws_athena_workgroup.json
var awsAthenaWorkgroup []byte
//go:embed mapping/aws/resource/athena/aws_athena_named_query.json
var awsAthenaNamedQuery []byte
//go:embed mapping/aws/resource/cloudwatch/aws_cloudwatch_composite_alarm.json
var awsCloudwatchCompositeAlarm []byte
//go:embed mapping/aws/resource/cloudwatch/aws_cloudwatch_dashboard.json
var awsCloudwatchDashboard []byte
//go:embed mapping/aws/resource/cloudwatch/aws_cloudwatch_event_api_destination.json
var awsCloudwatchEventAPIDestination []byte
//go:embed mapping/aws/resource/cloudwatch/aws_cloudwatch_event_archive.json
var awsCloudwatchEventArchive []byte
//go:embed mapping/aws/resource/cloudwatch/aws_cloudwatch_event_bus.json
var awsCloudwatchEventBus []byte
//go:embed mapping/aws/resource/cloudwatch/aws_cloudwatch_event_connection.json
var awsCloudwatchEventConnection []byte
//go:embed mapping/aws/resource/cloudwatch/aws_cloudwatch_event_permission.json
var awsCloudwatchEventPermission []byte
//go:embed mapping/aws/resource/cloudfront/aws_cloudfront_distribution.json
var awsCloudfrontDistribution []byte
//go:embed mapping/aws/resource/cloudfront/aws_cloudfront_field_level_encryption_config.json
var awsCloudfrontFieldLevelEncryptionConfig []byte
//go:embed mapping/aws/resource/cloudfront/aws_cloudfront_field_level_encryption_profile.json
var awsCloudfrontFieldLevelEncryptionProfile []byte
//go:embed mapping/aws/resource/cloudfront/aws_cloudfront_key_group.json
var awsCloudfrontKeyGroup []byte
//go:embed mapping/aws/resource/cloudfront/aws_cloudfront_monitoring_subscription.json
var awsCloudfrontMonitoringSubscription []byte
//go:embed mapping/aws/resource/cloudfront/aws_cloudfront_public_key.json
var awsCloudfrontPublicKey []byte
//go:embed mapping/aws/resource/backup/aws_backup_framework.json
var awsBackupFramework []byte
//go:embed mapping/aws/resource/backup/aws_backup_global_settings.json
var awsBackupGlobalSettings []byte
//go:embed mapping/aws/resource/backup/aws_backup_plan.json
var awsBackupPlan []byte
//go:embed mapping/aws/resource/backup/aws_backup_region_settings.json
var awsBackupRegionSettings []byte
//go:embed mapping/aws/resource/backup/aws_backup_report_plan.json
var awsBackupReportPlan []byte
//go:embed mapping/aws/resource/backup/aws_backup_selection.json
var awsBackupSelection []byte
//go:embed mapping/aws/resource/backup/aws_backup_restore_testing_plan.json
var awsBackupRestoreTestingPlan []byte
//go:embed mapping/aws/resource/backup/aws_backup_vault.json
var awsBackupVault []byte
//go:embed mapping/aws/resource/backup/aws_backup_vault_lock_configuration.json
var awsBackupVaultLockConfiguration []byte
//go:embed mapping/aws/resource/ba
55C0
ckup/aws_backup_vault_policy.json
var awsBackupVaultPolicy []byte
//go:embed mapping/aws/resource/ec2/aws_ebs_snapshot.json
var awsEbsSnapshot []byte
//go:embed mapping/aws/resource/ec2/aws_ebs_snapshot_copy.json
var awsEbsSnapshotCopy []byte
//go:embed mapping/aws/resource/xray/aws_xray_encryption_config.json
var awsXrayEncryptionConfig []byte
//go:embed mapping/aws/resource/xray/aws_xray_group.json
var awsXrayGroup []byte
//go:embed mapping/aws/resource/xray/aws_xray_sampling_rule.json
var awsXraySamplingRule []byte
//go:embed mapping/aws/resource/applicationinsights/aws_applicationinsights_application.json
var awsApplicationinsightsApplication []byte
//go:embed mapping/aws/resource/resource-groups/aws_resourcegroups_group.json
var awsResourcegroupsGroup []byte
//go:embed mapping/aws/resource/s3/aws_s3_bucket_inventory.json
var awsS3BucketInventory []byte
//go:embed mapping/aws/resource/lambda/aws_lambda_invocation.json
var awsLambdaInvocation []byte
//go:embed mapping/aws/resource/elasticache/aws_elasticache_user_group.json
var awsElasticacheUserGroup []byte
//go:embed mapping/aws/resource/elasticache/aws_elasticache_user.json
var awsElasticacheUser []byte
//go:embed mapping/aws/resource/servicequotas/aws_servicequotas_service_quota.json
var awsServicequotasServiceQuota []byte
//go:embed mapping/aws/resource/ses/aws_ses_domain_dkim.json
var awsSesDomainDkim []byte
//go:embed mapping/aws/resource/ses/aws_ses_domain_identity.json
var awsSesDomainIdentity []byte
//go:embed mapping/aws/resource/ses/aws_ses_domain_identity_verification.json
var awsSesDomainIdentityVerification []byte
//go:embed mapping/aws/resource/ses/aws_ses_domain_mail_from.json
var awsSesDomainMailFrom []byte
//go:embed mapping/aws/resource/ses/aws_ses_identity_notification_topic.json
var awsSesIdentityNotificationTopic []byte
//go:embed mapping/aws/resource/ses/aws_ses_identity_policy.json
var awsSesIdentityPolicy []byte
//go:embed mapping/aws/resource/cloudfront/aws_cloudfront_origin_access_identity.json
var awsCloudfrontOriginAccessIdentity []byte
//go:embed mapping/aws/resource/cloudwatch/aws_cloudwatch_metric_stream.json
var awsCloudwatchMetricStream []byte
//go:embed mapping/aws/resource/directconnect/aws_dx_hosted_transit_virtual_interface_accepter.json
var awsDxHostedTransitVirtualInterfaceAccepter []byte
//go:embed mapping/aws/resource/directconnect/aws_dx_gateway.json
var awsDxGateway []byte
//go:embed mapping/aws/resource/directconnect/aws_dx_gateway_association.json
var awsDxGatewayAssociation []byte
//go:embed mapping/aws/resource/dynamodb/aws_dynamodb_global_table.json
var awsDynamodbGlobalTable []byte
//go:embed mapping/aws/resource/dynamodb/aws_dynamodb_contributor_insights.json
var awsDynamodbContributorInsights []byte
//go:embed mapping/aws/resource/dynamodb/aws_dynamodb_table_item.json
var awsDynamodbTableItem []byte
//go:embed mapping/aws/resource/dynamodb/aws_dynamodb_tag.json
var awsDynamodbTag []byte
//go:embed mapping/aws/resource/backend/s3.json
var s3backend []byte
//go:embed mapping/aws/resource/cloudfront/aws_cloudfront_response_headers_policy.json
var awsCloudfrontResponseHeadersPolicy []byte
//go:embed mapping/aws/resource/elasticmapreduce/aws_emr_cluster.json
var awsEmrCluster []byte
//go:embed mapping/aws/resource/elasticmapreduce/aws_emr_security_configuration.json
var awsEmrSecurityConfiguration []byte
//go:embed mapping/aws/resource/workspaces/aws_workspaces_workspace.json
var awsWorkspacesWorkspace []byte
//go:embed mapping/aws/resource/workspaces/aws_workspaces_directory.json
var awsWorkspacesDirectory []byte
//go:embed mapping/aws/resource/account/aws_account_primary_contact.json
var awsAccountPrimaryContact []byte
//go:embed mapping/aws/resource/sns/aws_sns_sms_preferences.json
var awsSnsSmsPreferences []byte
//go:embed mapping/aws/resource/ssm-contacts/aws_ssmcontacts_contact.json
var awsSsmcontactsContact []byte
//go:embed mapping/aws/resource/ssm-contacts/aws_ssmcontacts_plan.json
var awsSsmcontactsPlan []byte
//go:embed mapping/aws/resource/swf/aws_swf_domain.json
var awsSwfDomain []byte
//go:embed mapping/aws/resource/budgets/aws_budgets_budget_action.json
var awsBudgetsBudgetAction []byte
//go:embed mapping/aws/resource/cloudformation/aws_cloudformation_stack.json
var awsCloudformationStack []byte
//go:embed mapping/aws/resource/cloudformation/aws_cloudformation_type.json
var awsCloudformationType []byte
//go:embed mapping/aws/resource/organizations/aws_organizations_policy.json
var awsOrganizationsPolicy []byte
//go:embed mapping/aws/resource/organizations/aws_organizations_policy_attachment.json
var awsOrganizationsPolicyAttachment []byte
//go:embed mapping/aws/resource/secretsmanager/aws_secretsmanager_secret_policy.json
var awsSecretsmanagerSecretPolicy []byte
//go:embed mapping/aws/resource/secretsmanager/aws_secretsmanager_secret_rotation.json
var awsSecretsmanagerSecretRotation []byte
//go:embed mapping/aws/resource/states/aws_sfn_alias.json
var awsSfnAlias []byte
//go:embed mapping/aws/resource/cloudsearch/aws_cloudsearch_domain.json
var awsCloudsearchDomain []byte
//go:embed mapping/aws/resource/cloudsearch/aws_cloudsearch_domain_service_access_policy.json
var awsCloudsearchDomainServiceAccessPolicy []byte
//go:embed mapping/aws/resource/cloudtrail/aws_cloudtrail_event_data_store.json
You can’t perform that action at this time.