forked from akerl/aws-account
-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraform.tfstate
16706 lines (16706 loc) · 862 KB
/
terraform.tfstate
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
{
"version": 3,
"terraform_version": "0.11.13",
"serial": 422,
"lineage": "6a6e3f47-d4c8-46eb-a34e-885062b7c62a",
"modules": [
{
"path": [
"root"
],
"outputs": {},
"resources": {},
"depends_on": []
},
{
"path": [
"root",
"account"
],
"outputs": {
"logging_bucket": {
"sensitive": false,
"type": "string",
"value": "akerl-s3-logs"
}
},
"resources": {
"aws_api_gateway_account.account": {
"type": "aws_api_gateway_account",
"depends_on": [
"aws_iam_role.apigw_cloudwatch"
],
"primary": {
"id": "api-gateway-account",
"attributes": {
"cloudwatch_role_arn": "arn:aws:iam::764218738161:role/apigw_cloudwatch",
"id": "api-gateway-account",
"throttle_settings.#": "1",
"throttle_settings.0.burst_limit": "5000",
"throttle_settings.0.rate_limit": "10000"
},
"meta": {},
"tainted": false
},
"deposed": [],
"provider": "provider.aws"
},
"aws_budgets_budget.cost": {
"type": "aws_budgets_budget",
"depends_on": [],
"primary": {
"id": "764218738161:cost_budget",
"attributes": {
"account_id": "764218738161",
"budget_type": "COST",
"cost_filters.%": "0",
"cost_types.#": "1",
"cost_types.0.include_credit": "true",
"cost_types.0.include_discount": "true",
"cost_types.0.include_other_subscription": "false",
"cost_types.0.include_recurring": "true",
"cost_types.0.include_refund": "true",
"cost_types.0.include_subscription": "true",
"cost_types.0.include_support": "true",
"cost_types.0.include_tax": "true",
"cost_types.0.include_upfront": "true",
"cost_types.0.use_amortized": "false",
"cost_types.0.use_blended": "false",
"id": "764218738161:cost_budget",
"limit_amount": "10",
"limit_unit": "USD",
"name": "cost_budget",
"time_period_end": "2087-06-15_00:00",
"time_period_start": "2017-01-01_00:00",
"time_unit": "MONTHLY"
},
"meta": {},
"tainted": false
},
"deposed": [],
"provider": "provider.aws"
},
"aws_cloudtrail.main-trail": {
"type": "aws_cloudtrail",
"depends_on": [
"aws_s3_bucket.main-trail"
],
"primary": {
"id": "main-trail",
"attributes": {
"arn": "arn:aws:cloudtrail:us-east-1:764218738161:trail/main-trail",
"cloud_watch_logs_group_arn": "",
"cloud_watch_logs_role_arn": "",
"enable_log_file_validation": "true",
"enable_logging": "true",
"event_selector.#": "2",
"event_selector.0.data_resource.#": "1",
"event_selector.0.data_resource.0.type": "AWS::S3::Object",
"event_selector.0.data_resource.0.values.#": "1",
"event_selector.0.data_resource.0.values.0": "arn:aws:s3:::",
"event_selector.0.include_management_events": "true",
"event_selector.0.read_write_type": "All",
"event_selector.1.data_resource.#": "1",
"event_selector.1.data_resource.0.type": "AWS::Lambda::Function",
"event_selector.1.data_resource.0.values.#": "1",
"event_selector.1.data_resource.0.values.0": "arn:aws:lambda",
"event_selector.1.include_management_events": "true",
"event_selector.1.read_write_type": "All",
"home_region": "us-east-1",
"id": "main-trail",
"include_global_service_events": "true",
"is_multi_region_trail": "true",
"is_organization_trail": "false",
"kms_key_id": "",
"name": "main-trail",
"s3_bucket_name": "akerl-cloudtrail",
"s3_key_prefix": "",
"sns_topic_name": "",
"tags.%": "0"
},
"meta": {},
"tainted": false
},
"deposed": [],
"provider": "provider.aws"
},
"aws_iam_account_password_policy.strict": {
"type": "aws_iam_account_password_policy",
"depends_on": [],
"primary": {
"id": "iam-account-password-policy",
"attributes": {
"allow_users_to_change_password": "true",
"expire_passwords": "false",
"hard_expiry": "false",
"id": "iam-account-password-policy",
"max_password_age": "0",
"minimum_password_length": "32",
"password_reuse_prevention": "24",
"require_lowercase_characters": "true",
"require_numbers": "true",
"require_symbols": "true",
"require_uppercase_characters": "true"
},
"meta": {},
"tainted": false
},
"deposed": [],
"provider": "provider.aws"
},
"aws_iam_role.apigw_cloudwatch": {
"type": "aws_iam_role",
"depends_on": [
"data.aws_iam_policy_document.apigw_cloudwatch_assume"
],
"primary": {
"id": "apigw_cloudwatch",
"attributes": {
"arn": "arn:aws:iam::764218738161:role/apigw_cloudwatch",
"assume_role_policy": "{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"\",\"Effect\":\"Allow\",\"Principal\":{\"Service\":\"apigateway.amazonaws.com\"},\"Action\":\"sts:AssumeRole\"}]}",
"create_date": "2019-03-10T13:09:02Z",
"description": "",
"force_detach_policies": "false",
"id": "apigw_cloudwatch",
"max_session_duration": "3600",
"name": "apigw_cloudwatch",
"path": "/",
"tags.%": "0",
"unique_id": "AROAJ7TMFFVTPEUDB4J5C"
},
"meta": {},
"tainted": false
},
"deposed": [],
"provider": "provider.aws"
},
"aws_iam_role_policy.apigw_cloudwatch": {
"type": "aws_iam_role_policy",
"depends_on": [
"aws_iam_role.apigw_cloudwatch",
"data.aws_iam_policy_document.apigw_cloudwatch_perms"
],
"primary": {
"id": "apigw_cloudwatch:apigw_cloudwatch",
"attributes": {
"id": "apigw_cloudwatch:apigw_cloudwatch",
"name": "apigw_cloudwatch",
"policy": "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Sid\": \"\",\n \"Effect\": \"Allow\",\n \"Action\": [\n \"logs:PutLogEvents\",\n \"logs:GetLogEvents\",\n \"logs:FilterLogEvents\",\n \"logs:DescribeLogStreams\",\n \"logs:DescribeLogGroups\",\n \"logs:CreateLogStream\",\n \"logs:CreateLogGroup\"\n ],\n \"Resource\": \"arn:aws:logs:*:*:*\"\n }\n ]\n}",
"role": "apigw_cloudwatch"
},
"meta": {},
"tainted": false
},
"deposed": [],
"provider": "provider.aws"
},
"aws_s3_bucket.logging": {
"type": "aws_s3_bucket",
"depends_on": [],
"primary": {
"id": "akerl-s3-logs",
"attributes": {
"acceleration_status": "",
"acl": "log-delivery-write",
"arn": "arn:aws:s3:::akerl-s3-logs",
"bucket": "akerl-s3-logs",
"bucket_domain_name": "akerl-s3-logs.s3.amazonaws.com",
"bucket_regional_domain_name": "akerl-s3-logs.s3.amazonaws.com",
"cors_rule.#": "0",
"force_destroy": "false",
"hosted_zone_id": "Z3AQBSTGFYJSTF",
"id": "akerl-s3-logs",
"lifecycle_rule.#": "0",
"logging.#": "0",
"object_lock_configuration.#": "0",
"policy": "",
"region": "us-east-1",
"replication_configuration.#": "0",
"request_payer": "BucketOwner",
"server_side_encryption_configuration.#": "0",
"tags.%": "0",
"versioning.#": "1",
"versioning.0.enabled": "true",
"versioning.0.mfa_delete": "false",
"website.#": "0"
},
"meta": {},
"tainted": false
},
"deposed": [],
"provider": "provider.aws"
},
"aws_s3_bucket.main-trail": {
"type": "aws_s3_bucket",
"depends_on": [],
"primary": {
"id": "akerl-cloudtrail",
"attributes": {
"acceleration_status": "",
"acl": "private",
"arn": "arn:aws:s3:::akerl-cloudtrail",
"bucket": "akerl-cloudtrail",
"bucket_domain_name": "akerl-cloudtrail.s3.amazonaws.com",
"bucket_regional_domain_name": "akerl-cloudtrail.s3.amazonaws.com",
"cors_rule.#": "0",
"force_destroy": "false",
"hosted_zone_id": "Z3AQBSTGFYJSTF",
"id": "akerl-cloudtrail",
"lifecycle_rule.#": "0",
"logging.#": "0",
"object_lock_configuration.#": "0",
"policy": "{\"Statement\":[{\"Action\":\"s3:GetBucketAcl\",\"Effect\":\"Allow\",\"Principal\":{\"Service\":\"cloudtrail.amazonaws.com\"},\"Resource\":\"arn:aws:s3:::akerl-cloudtrail\",\"Sid\":\"AWSCloudTrailAclCheck\"},{\"Action\":\"s3:PutObject\",\"Condition\":{\"StringEquals\":{\"s3:x-amz-acl\":\"bucket-owner-full-control\"}},\"Effect\":\"Allow\",\"Principal\":{\"Service\":\"cloudtrail.amazonaws.com\"},\"Resource\":\"arn:aws:s3:::akerl-cloudtrail/*\",\"Sid\":\"AWSCloudTrailWrite\"}],\"Version\":\"2012-10-17\"}",
"region": "us-east-1",
"replication_configuration.#": "0",
"request_payer": "BucketOwner",
"server_side_encryption_configuration.#": "0",
"tags.%": "0",
"versioning.#": "1",
"versioning.0.enabled": "false",
"versioning.0.mfa_delete": "false",
"website.#": "0"
},
"meta": {},
"tainted": false
},
"deposed": [],
"provider": "provider.aws"
},
"data.aws_iam_policy_document.apigw_cloudwatch_assume": {
"type": "aws_iam_policy_document",
"depends_on": [],
"primary": {
"id": "1004447381",
"attributes": {
"id": "1004447381",
"json": "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Sid\": \"\",\n \"Effect\": \"Allow\",\n \"Action\": \"sts:AssumeRole\",\n \"Principal\": {\n \"Service\": \"apigateway.amazonaws.com\"\n }\n }\n ]\n}",
"statement.#": "1",
"statement.0.actions.#": "1",
"statement.0.actions.2528466339": "sts:AssumeRole",
"statement.0.condition.#": "0",
"statement.0.effect": "Allow",
"statement.0.not_actions.#": "0",
"statement.0.not_principals.#": "0",
"statement.0.not_resources.#": "0",
"statement.0.principals.#": "1",
"statement.0.principals.2040772961.identifiers.#": "1",
"statement.0.principals.2040772961.identifiers.1175233861": "apigateway.amazonaws.com",
"statement.0.principals.2040772961.type": "Service",
"statement.0.resources.#": "0",
"statement.0.sid": "",
"version": "2012-10-17"
},
"meta": {},
"tainted": false
},
"deposed": [],
"provider": "provider.aws"
},
"data.aws_iam_policy_document.apigw_cloudwatch_perms": {
"type": "aws_iam_policy_document",
"depends_on": [],
"primary": {
"id": "250684656",
"attributes": {
"id": "250684656",
"json": "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Sid\": \"\",\n \"Effect\": \"Allow\",\n \"Action\": [\n \"logs:PutLogEvents\",\n \"logs:GetLogEvents\",\n \"logs:FilterLogEvents\",\n \"logs:DescribeLogStreams\",\n \"logs:DescribeLogGroups\",\n \"logs:CreateLogStream\",\n \"logs:CreateLogGroup\"\n ],\n \"Resource\": \"arn:aws:logs:*:*:*\"\n }\n ]\n}",
"statement.#": "1",
"statement.0.actions.#": "7",
"statement.0.actions.2164683621": "logs:DescribeLogGroups",
"statement.0.actions.2809485102": "logs:CreateLogGroup",
"statement.0.actions.3065443861": "logs:FilterLogEvents",
"statement.0.actions.3285979848": "logs:CreateLogStream",
"statement.0.actions.3341951797": "logs:GetLogEvents",
"statement.0.actions.3697566380": "logs:DescribeLogStreams",
"statement.0.actions.39743051": "logs:PutLogEvents",
"statement.0.condition.#": "0",
"statement.0.effect": "Allow",
"statement.0.not_actions.#": "0",
"statement.0.not_principals.#": "0",
"statement.0.not_resources.#": "0",
"statement.0.principals.#": "0",
"statement.0.resources.#": "1",
"statement.0.resources.162423377": "arn:aws:logs:*:*:*",
"statement.0.sid": "",
"version": "2012-10-17"
},
"meta": {},
"tainted": false
},
"deposed": [],
"provider": "provider.aws"
}
},
"depends_on": []
},
{
"path": [
"root",
"akerl-aws-account"
],
"outputs": {},
"resources": {
"aws_iam_user.build": {
"type": "aws_iam_user",
"depends_on": [],
"primary": {
"id": "build-akerl-aws-account",
"attributes": {
"arn": "arn:aws:iam::764218738161:user/build-akerl-aws-account",
"force_destroy": "false",
"id": "build-akerl-aws-account",
"name": "build-akerl-aws-account",
"path": "/",
"tags.%": "0",
"unique_id": "AIDAJ4HI3M43KDY46ZISA"
},
"meta": {},
"tainted": false
},
"deposed": [],
"provider": "provider.aws"
},
"aws_iam_user_policy.terraform-planner": {
"type": "aws_iam_user_policy",
"depends_on": [
"aws_iam_user.build",
"data.aws_iam_policy_document.terraform-planner"
],
"primary": {
"id": "build-akerl-aws-account:terraform-planner",
"attributes": {
"id": "build-akerl-aws-account:terraform-planner",
"name": "terraform-planner",
"policy": "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Sid\": \"\",\n \"Effect\": \"Allow\",\n \"Action\": [\n \"sns:Get*\",\n \"s3:ListBucket\",\n \"s3:ListAllMyBuckets\",\n \"s3:GetReplicationConfiguration\",\n \"s3:GetLifecycleConfiguration\",\n \"s3:GetEncryptionConfiguration\",\n \"s3:GetBucket*\",\n \"s3:GetAccelerateConfiguration\",\n \"route53:List*\",\n \"route53:Get*\",\n \"lambda:List*\",\n \"lambda:Get*\",\n \"iam:List*\",\n \"iam:Get*\",\n \"events:List*\",\n \"events:Describe*\",\n \"ec2:Describe*\",\n \"cloudwatch:Describe*\",\n \"cloudtrail:List*\",\n \"cloudtrail:Get*\",\n \"cloudtrail:Describe*\",\n \"cloudfront:List*\",\n \"cloudfront:Get*\",\n \"budgets:View*\",\n \"apigateway:Get*\",\n \"acm:List*\",\n \"acm:Describe*\"\n ],\n \"Resource\": \"*\"\n }\n ]\n}",
"user": "build-akerl-aws-account"
},
"meta": {},
"tainted": false
},
"deposed": [],
"provider": "provider.aws"
},
"awscreds_iam_access_key.build-key": {
"type": "awscreds_iam_access_key",
"depends_on": [
"aws_iam_user.build"
],
"primary": {
"id": "AKIAJGNT6XKPDZQADKOQ",
"attributes": {
"file": "creds/build-akerl-aws-account",
"id": "AKIAJGNT6XKPDZQADKOQ",
"secret": "",
"ses_smtp_password": "",
"status": "Active",
"user": "build-akerl-aws-account"
},
"meta": {},
"tainted": false
},
"deposed": [],
"provider": "provider.awscreds"
},
"data.aws_iam_policy_document.terraform-planner": {
"type": "aws_iam_policy_document",
"depends_on": [],
"primary": {
"id": "490589767",
"attributes": {
"id": "490589767",
"json": "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Sid\": \"\",\n \"Effect\": \"Allow\",\n \"Action\": [\n \"sns:Get*\",\n \"s3:ListBucket\",\n \"s3:ListAllMyBuckets\",\n \"s3:GetReplicationConfiguration\",\n \"s3:GetLifecycleConfiguration\",\n \"s3:GetEncryptionConfiguration\",\n \"s3:GetBucket*\",\n \"s3:GetAccelerateConfiguration\",\n \"route53:List*\",\n \"route53:Get*\",\n \"lambda:List*\",\n \"lambda:Get*\",\n \"iam:List*\",\n \"iam:Get*\",\n \"events:List*\",\n \"events:Describe*\",\n \"ec2:Describe*\",\n \"cloudwatch:Describe*\",\n \"cloudtrail:List*\",\n \"cloudtrail:Get*\",\n \"cloudtrail:Describe*\",\n \"cloudfront:List*\",\n \"cloudfront:Get*\",\n \"budgets:View*\",\n \"apigateway:Get*\",\n \"acm:List*\",\n \"acm:Describe*\"\n ],\n \"Resource\": \"*\"\n }\n ]\n}",
"statement.#": "1",
"statement.0.actions.#": "27",
"statement.0.actions.1303906083": "route53:List*",
"statement.0.actions.1390412377": "s3:GetBucket*",
"statement.0.actions.1794484843": "s3:GetReplicationConfiguration",
"statement.0.actions.1877980538": "lambda:List*",
"statement.0.actions.1942864761": "route53:Get*",
"statement.0.actions.1999404577": "cloudfront:Get*",
"statement.0.actions.2323439281": "s3:GetAccelerateConfiguration",
"statement.0.actions.2459212947": "ec2:Describe*",
"statement.0.actions.2723925517": "events:List*",
"statement.0.actions.2960554739": "cloudtrail:Describe*",
"statement.0.actions.3319256821": "acm:Describe*",
"statement.0.actions.3643160128": "apigateway:Get*",
"statement.0.actions.3661080708": "iam:List*",
"statement.0.actions.3713003022": "events:Describe*",
"statement.0.actions.3877028086": "acm:List*",
"statement.0.actions.394265353": "cloudtrail:Get*",
"statement.0.actions.401159279": "cloudwatch:Describe*",
"statement.0.actions.4100473182": "s3:GetLifecycleConfiguration",
"statement.0.actions.4187279778": "sns:Get*",
"statement.0.actions.486976917": "s3:ListBucket",
"statement.0.actions.500775903": "cloudtrail:List*",
"statement.0.actions.644424655": "lambda:Get*",
"statement.0.actions.671891288": "cloudfront:List*",
"statement.0.actions.784067698": "iam:Get*",
"statement.0.actions.796062918": "s3:ListAllMyBuckets",
"statement.0.actions.821476004": "budgets:View*",
"statement.0.actions.906973559": "s3:GetEncryptionConfiguration",
"statement.0.condition.#": "0",
"statement.0.effect": "Allow",
"statement.0.not_actions.#": "0",
"statement.0.not_principals.#": "0",
"statement.0.not_resources.#": "0",
"statement.0.principals.#": "0",
"statement.0.resources.#": "1",
"statement.0.resources.2679715827": "*",
"statement.0.sid": "",
"version": "2012-10-17"
},
"meta": {},
"tainted": false
},
"deposed": [],
"provider": "provider.aws"
}
},
"depends_on": []
},
{
"path": [
"root",
"akerl-blog"
],
"outputs": {
"cloudfront_zone_id": {
"sensitive": false,
"type": "string",
"value": "Z2FDTNDATAQYW2"
},
"redirect_dns_name": {
"sensitive": false,
"type": "string",
"value": "d1rqobv89rg0ff.cloudfront.net"
},
"site_dns_name": {
"sensitive": false,
"type": "string",
"value": "d1bw70pwuuwdo0.cloudfront.net"
}
},
"resources": {
"aws_cloudfront_distribution.file": {
"type": "aws_cloudfront_distribution",
"depends_on": [],
"primary": {
"id": "EJOK7T2CUGBYP",
"attributes": {
"active_trusted_signers.%": "2",
"active_trusted_signers.enabled": "false",
"active_trusted_signers.items.#": "0",
"aliases.#": "1",
"aliases.2457523478": "blog.akerl.org",
"arn": "arn:aws:cloudfront::764218738161:distribution/EJOK7T2CUGBYP",
"caller_reference": "2019-03-10T16:45:18.424506+03:00",
"custom_error_response.#": "0",
"default_cache_behavior.#": "1",
"default_cache_behavior.0.allowed_methods.#": "2",
"default_cache_behavior.0.allowed_methods.1040875975": "GET",
"default_cache_behavior.0.allowed_methods.1445840968": "HEAD",
"default_cache_behavior.0.cached_methods.#": "2",
"default_cache_behavior.0.cached_methods.1040875975": "GET",
"default_cache_behavior.0.cached_methods.1445840968": "HEAD",
"default_cache_behavior.0.compress": "true",
"default_cache_behavior.0.default_ttl": "0",
"default_cache_behavior.0.field_level_encryption_id": "",
"default_cache_behavior.0.forwarded_values.#": "1",
"default_cache_behavior.0.forwarded_values.0.cookies.#": "1",
"default_cache_behavior.0.forwarded_values.0.cookies.0.forward": "none",
"default_cache_behavior.0.forwarded_values.0.cookies.0.whitelisted_names.#": "0",
"default_cache_behavior.0.forwarded_values.0.headers.#": "0",
"default_cache_behavior.0.forwarded_values.0.query_string": "false",
"default_cache_behavior.0.forwarded_values.0.query_string_cache_keys.#": "0",
"default_cache_behavior.0.lambda_function_association.#": "0",
"default_cache_behavior.0.max_ttl": "300",
"default_cache_behavior.0.min_ttl": "0",
"default_cache_behavior.0.smooth_streaming": "false",
"default_cache_behavior.0.target_origin_id": "file-bucket",
"default_cache_behavior.0.trusted_signers.#": "0",
"default_cache_behavior.0.viewer_protocol_policy": "redirect-to-https",
"default_root_object": "index.html",
"domain_name": "d1bw70pwuuwdo0.cloudfront.net",
"enabled": "true",
"etag": "E3T1E73XLBS3VO",
"hosted_zone_id": "Z2FDTNDATAQYW2",
"http_version": "http2",
"id": "EJOK7T2CUGBYP",
"in_progress_validation_batches": "0",
"is_ipv6_enabled": "false",
"last_modified_time": "2019-03-10 13:45:23.309 +0000 UTC",
"logging_config.#": "1",
"logging_config.0.bucket": "akerl-s3-logs.s3.amazonaws.com",
"logging_config.0.include_cookies": "false",
"logging_config.0.prefix": "akerl-blog-cdn/",
"ordered_cache_behavior.#": "0",
"origin.#": "1",
"origin.2402435017.custom_header.#": "0",
"origin.2402435017.custom_origin_config.#": "1",
"origin.2402435017.custom_origin_config.0.http_port": "80",
"origin.2402435017.custom_origin_config.0.https_port": "443",
"origin.2402435017.custom_origin_config.0.origin_keepalive_timeout": "5",
"origin.2402435017.custom_origin_config.0.origin_protocol_policy": "http-only",
"origin.2402435017.custom_origin_config.0.origin_read_timeout": "30",
"origin.2402435017.custom_origin_config.0.origin_ssl_protocols.#": "1",
"origin.2402435017.custom_origin_config.0.origin_ssl_protocols.3981581077": "TLSv1.2",
"origin.2402435017.domain_name": "akerl-blog.s3-website-us-east-1.amazonaws.com",
"origin.2402435017.origin_id": "file-bucket",
"origin.2402435017.origin_path": "",
"origin.2402435017.s3_origin_config.#": "0",
"price_class": "PriceClass_100",
"restrictions.#": "1",
"restrictions.0.geo_restriction.#": "1",
"restrictions.0.geo_restriction.0.locations.#": "0",
"restrictions.0.geo_restriction.0.restriction_type": "none",
"retain_on_delete": "false",
"status": "Deployed",
"tags.%": "0",
"viewer_certificate.#": "1",
"viewer_certificate.0.acm_certificate_arn": "arn:aws:acm:us-east-1:764218738161:certificate/d4510974-2f79-437c-a744-0be088415f05",
"viewer_certificate.0.cloudfront_default_certificate": "false",
"viewer_certificate.0.iam_certificate_id": "",
"viewer_certificate.0.minimum_protocol_version": "TLSv1.2_2018",
"viewer_certificate.0.ssl_support_method": "sni-only",
"web_acl_id": ""
},
"meta": {},
"tainted": false
},
"deposed": [],
"provider": "provider.aws"
},
"aws_cloudfront_distribution.redirect": {
"type": "aws_cloudfront_distribution",
"depends_on": [
"aws_s3_bucket.redirect",
"module.certificate"
],
"primary": {
"id": "E3KW5OM87UMD7P",
"attributes": {
"active_trusted_signers.%": "2",
"active_trusted_signers.enabled": "false",
"active_trusted_signers.items.#": "0",
"aliases.#": "12",
"aliases.1288416212": "lesaker.org",
"aliases.1516820402": "lesaker.com",
"aliases.1577856700": "www.a-rwx.org",
"aliases.1599199520": "scrtybybscrty.org",
"aliases.2796100132": "a-rwx.org",
"aliases.3230243585": "www.akerl.com",
"aliases.3259292592": "www.lesaker.com",
"aliases.3465374948": "www.scrtybybscrty.org",
"aliases.3571951574": "www.lesaker.org",
"aliases.3593135975": "www.akerl.org",
"aliases.781177855": "akerl.org",
"aliases.942452633": "akerl.com",
"arn": "arn:aws:cloudfront::764218738161:distribution/E3KW5OM87UMD7P",
"caller_reference": "2019-03-10T16:16:03.56448+03:00",
"custom_error_response.#": "0",
"default_cache_behavior.#": "1",
"default_cache_behavior.0.allowed_methods.#": "2",
"default_cache_behavior.0.allowed_methods.1040875975": "GET",
"default_cache_behavior.0.allowed_methods.1445840968": "HEAD",
"default_cache_behavior.0.cached_methods.#": "2",
"default_cache_behavior.0.cached_methods.1040875975": "GET",
"default_cache_behavior.0.cached_methods.1445840968": "HEAD",
"default_cache_behavior.0.compress": "true",
"default_cache_behavior.0.default_ttl": "300",
"default_cache_behavior.0.field_level_encryption_id": "",
"default_cache_behavior.0.forwarded_values.#": "1",
"default_cache_behavior.0.forwarded_values.0.cookies.#": "1",
"default_cache_behavior.0.forwarded_values.0.cookies.0.forward": "none",
"default_cache_behavior.0.forwarded_values.0.cookies.0.whitelisted_names.#": "0",
"default_cache_behavior.0.forwarded_values.0.headers.#": "0",
"default_cache_behavior.0.forwarded_values.0.query_string": "false",
"default_cache_behavior.0.forwarded_values.0.query_string_cache_keys.#": "0",
"default_cache_behavior.0.lambda_function_association.#": "0",
"default_cache_behavior.0.max_ttl": "300",
"default_cache_behavior.0.min_ttl": "0",
"default_cache_behavior.0.smooth_streaming": "false",
"default_cache_behavior.0.target_origin_id": "redirect-bucket",
"default_cache_behavior.0.trusted_signers.#": "0",
"default_cache_behavior.0.viewer_protocol_policy": "redirect-to-https",
"default_root_object": "",
"domain_name": "d1rqobv89rg0ff.cloudfront.net",
"enabled": "true",
"etag": "E39WV8U19IRSVM",
"hosted_zone_id": "Z2FDTNDATAQYW2",
"http_version": "http2",
"id": "E3KW5OM87UMD7P",
"in_progress_validation_batches": "0",
"is_ipv6_enabled": "false",
"last_modified_time": "2019-03-10 13:16:05.435 +0000 UTC",
"logging_config.#": "1",
"logging_config.0.bucket": "akerl-s3-logs.s3.amazonaws.com",
"logging_config.0.include_cookies": "false",
"logging_config.0.prefix": "akerl-blog-redirect-cdn",
"ordered_cache_behavior.#": "0",
"origin.#": "1",
"origin.3868504272.custom_header.#": "0",
"origin.3868504272.custom_origin_config.#": "1",
"origin.3868504272.custom_origin_config.0.http_port": "80",
"origin.3868504272.custom_origin_config.0.https_port": "443",
"origin.3868504272.custom_origin_config.0.origin_keepalive_timeout": "5",
"origin.3868504272.custom_origin_config.0.origin_protocol_policy": "http-only",
"origin.3868504272.custom_origin_config.0.origin_read_timeout": "30",
"origin.3868504272.custom_origin_config.0.origin_ssl_protocols.#": "1",
"origin.3868504272.custom_origin_config.0.origin_ssl_protocols.3981581077": "TLSv1.2",
"origin.3868504272.domain_name": "akerl-blog-redirect.s3-website-us-east-1.amazonaws.com",
"origin.3868504272.origin_id": "redirect-bucket",
"origin.3868504272.origin_path": "",
"origin.3868504272.s3_origin_config.#": "0",
"price_class": "PriceClass_100",
"restrictions.#": "1",
"restrictions.0.geo_restriction.#": "1",
"restrictions.0.geo_restriction.0.locations.#": "0",
"restrictions.0.geo_restriction.0.restriction_type": "none",
"retain_on_delete": "false",
"status": "Deployed",
"tags.%": "0",
"viewer_certificate.#": "1",
"viewer_certificate.0.acm_certificate_arn": "arn:aws:acm:us-east-1:764218738161:certificate/d4510974-2f79-437c-a744-0be088415f05",
"viewer_certificate.0.cloudfront_default_certificate": "false",
"viewer_certificate.0.iam_certificate_id": "",
"viewer_certificate.0.minimum_protocol_version": "TLSv1.2_2018",
"viewer_certificate.0.ssl_support_method": "sni-only",
"web_acl_id": ""
},
"meta": {},
"tainted": false
},
"deposed": [],
"provider": "provider.aws"
},
"aws_s3_bucket.file": {
"type": "aws_s3_bucket",
"depends_on": [
"data.aws_iam_policy_document.file_bucket_read_access"
],
"primary": {
"id": "akerl-blog",
"attributes": {
"acceleration_status": "",
"acl": "private",
"arn": "arn:aws:s3:::akerl-blog",
"bucket": "akerl-blog",
"bucket_domain_name": "akerl-blog.s3.amazonaws.com",
"bucket_regional_domain_name": "akerl-blog.s3.amazonaws.com",
"cors_rule.#": "0",
"force_destroy": "false",
"hosted_zone_id": "Z3AQBSTGFYJSTF",
"id": "akerl-blog",
"lifecycle_rule.#": "0",
"logging.#": "1",
"logging.2158441842.target_bucket": "akerl-s3-logs",
"logging.2158441842.target_prefix": "akerl-blog/",
"object_lock_configuration.#": "0",
"policy": "{\"Statement\":[{\"Action\":\"s3:GetObject\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"*\"},\"Resource\":\"arn:aws:s3:::akerl-blog/*\",\"Sid\":\"\"}],\"Version\":\"2012-10-17\"}",
"region": "us-east-1",
"replication_configuration.#": "0",
"request_payer": "BucketOwner",
"server_side_encryption_configuration.#": "0",
"tags.%": "0",
"versioning.#": "1",
"versioning.0.enabled": "true",
"versioning.0.mfa_delete": "false",
"website.#": "1",
"website.0.error_document": "404/index.html",
"website.0.index_document": "index.html",
"website.0.redirect_all_requests_to": "",
"website.0.routing_rules": "",
"website_domain": "s3-website-us-east-1.amazonaws.com",
"website_endpoint": "akerl-blog.s3-website-us-east-1.amazonaws.com"
},
"meta": {},
"tainted": false
},
"deposed": [],
"provider": "provider.aws"
},
"aws_s3_bucket.redirect": {
"type": "aws_s3_bucket",
"depends_on": [
"data.aws_iam_policy_document.redirect_bucket_read_access"
],
"primary": {
"id": "akerl-blog-redirect",
"attributes": {
"acceleration_status": "",
"acl": "private",
"arn": "arn:aws:s3:::akerl-blog-redirect",
"bucket": "akerl-blog-redirect",
"bucket_domain_name": "akerl-blog-redirect.s3.amazonaws.com",
"bucket_regional_domain_name": "akerl-blog-redirect.s3.amazonaws.com",
"cors_rule.#": "0",
"force_destroy": "false",
"hosted_zone_id": "Z3AQBSTGFYJSTF",
"id": "akerl-blog-redirect",
"lifecycle_rule.#": "0",
"logging.#": "1",
"logging.525726922.target_bucket": "akerl-s3-logs",
"logging.525726922.target_prefix": "akerl-blog-redirect/",
"object_lock_configuration.#": "0",
"policy": "{\"Statement\":[{\"Action\":\"s3:GetObject\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"*\"},\"Resource\":\"arn:aws:s3:::akerl-blog-redirect/*\",\"Sid\":\"\"}],\"Version\":\"2012-10-17\"}",
"region": "us-east-1",
"replication_configuration.#": "0",
"request_payer": "BucketOwner",
"server_side_encryption_configuration.#": "0",
"tags.%": "0",
"versioning.#": "1",
"versioning.0.enabled": "true",
"versioning.0.mfa_delete": "false",
"website.#": "1",
"website.0.error_document": "",
"website.0.index_document": "",
"website.0.redirect_all_requests_to": "https://blog.akerl.org",
"website.0.routing_rules": "",
"website_domain": "s3-website-us-east-1.amazonaws.com",
"website_endpoint": "akerl-blog-redirect.s3-website-us-east-1.amazonaws.com"
},
"meta": {},
"tainted": false
},
"deposed": [],
"provider": "provider.aws"
},
"data.aws_iam_policy_document.file_bucket_read_access": {
"type": "aws_iam_policy_document",
"depends_on": [],
"primary": {
"id": "974320875",
"attributes": {
"id": "974320875",
"json": "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Sid\": \"\",\n \"Effect\": \"Allow\",\n \"Action\": \"s3:GetObject\",\n \"Resource\": \"arn:aws:s3:::akerl-blog/*\",\n \"Principal\": {\n \"AWS\": \"*\"\n }\n }\n ]\n}",
"statement.#": "1",
"statement.0.actions.#": "1",
"statement.0.actions.2071725391": "s3:GetObject",
"statement.0.condition.#": "0",
"statement.0.effect": "Allow",
"statement.0.not_actions.#": "0",
"statement.0.not_principals.#": "0",
"statement.0.not_resources.#": "0",
"statement.0.principals.#": "1",
"statement.0.principals.636693895.identifiers.#": "1",
"statement.0.principals.636693895.identifiers.2679715827": "*",
"statement.0.principals.636693895.type": "AWS",
"statement.0.resources.#": "1",
"statement.0.resources.2218934011": "arn:aws:s3:::akerl-blog/*",
"statement.0.sid": "",
"version": "2012-10-17"
},
"meta": {},
"tainted": false
},
"deposed": [],
"provider": "provider.aws"
},
"data.aws_iam_policy_document.redirect_bucket_read_access": {
"type": "aws_iam_policy_document",
"depends_on": [],
"primary": {
"id": "2903805152",
"attributes": {
"id": "2903805152",
"json": "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Sid\": \"\",\n \"Effect\": \"Allow\",\n \"Action\": \"s3:GetObject\",\n \"Resource\": \"arn:aws:s3:::akerl-blog-redirect/*\",\n \"Principal\": {\n \"AWS\": \"*\"\n }\n }\n ]\n}",
"statement.#": "1",
"statement.0.actions.#": "1",
"statement.0.actions.2071725391": "s3:GetObject",
"statement.0.condition.#": "0",
"statement.0.effect": "Allow",
"statement.0.not_actions.#": "0",
"statement.0.not_principals.#": "0",
"statement.0.not_resources.#": "0",
"statement.0.principals.#": "1",
"statement.0.principals.636693895.identifiers.#": "1",
"statement.0.principals.636693895.identifiers.2679715827": "*",
"statement.0.principals.636693895.type": "AWS",
"statement.0.resources.#": "1",
"statement.0.resources.2274886761": "arn:aws:s3:::akerl-blog-redirect/*",
"statement.0.sid": "",
"version": "2012-10-17"
},
"meta": {},
"tainted": false
},
"deposed": [],
"provider": "provider.aws"
}
},
"depends_on": []
},
{
"path": [
"root",
"akerl-books-library"
],
"outputs": {
"dns_name": {
"sensitive": false,
"type": "string",
"value": "d3iukmmdtej1e4.cloudfront.net"
}
},
"resources": {
"data.aws_iam_policy_document.lambda_perms": {
"type": "aws_iam_policy_document",
"depends_on": [],
"primary": {
"id": "2584515409",
"attributes": {
"id": "2584515409",
"json": "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Sid\": \"\",\n \"Effect\": \"Allow\",\n \"Action\": [\n \"s3:ListBucket\",\n \"s3:GetObject\"\n ],\n \"Resource\": [\n \"arn:aws:s3:::akerl-book-library/*\",\n \"arn:aws:s3:::akerl-book-library-config/*\",\n \"arn:aws:s3:::akerl-book-library-config\",\n \"arn:aws:s3:::akerl-book-library\"\n ]\n },\n {\n \"Sid\": \"\",\n \"Effect\": \"Allow\",\n \"Action\": [\n \"logs:PutLogEvents\",\n \"logs:CreateLogStream\",\n \"logs:CreateLogGroup\"\n ],\n \"Resource\": \"arn:aws:logs:*:*:*\"\n }\n ]\n}",
"statement.#": "2",
"statement.0.actions.#": "2",
"statement.0.actions.2071725391": "s3:GetObject",
"statement.0.actions.486976917": "s3:ListBucket",
"statement.0.condition.#": "0",
"statement.0.effect": "Allow",
"statement.0.not_actions.#": "0",
"statement.0.not_principals.#": "0",
"statement.0.not_resources.#": "0",
"statement.0.principals.#": "0",
"statement.0.resources.#": "4",
"statement.0.resources.1115446853": "arn:aws:s3:::akerl-book-library",
"statement.0.resources.2236332432": "arn:aws:s3:::akerl-book-library/*",
"statement.0.resources.2905745180": "arn:aws:s3:::akerl-book-library-config",
"statement.0.resources.3354098011": "arn:aws:s3:::akerl-book-library-config/*",
"statement.0.sid": "",
"statement.1.actions.#": "3",
"statement.1.actions.2809485102": "logs:CreateLogGroup",
"statement.1.actions.3285979848": "logs:CreateLogStream",
"statement.1.actions.39743051": "logs:PutLogEvents",
"statement.1.condition.#": "0",
"statement.1.effect": "Allow",
"statement.1.not_actions.#": "0",
"statement.1.not_principals.#": "0",
"statement.1.not_resources.#": "0",
"statement.1.principals.#": "0",
"statement.1.resources.#": "1",
"statement.1.resources.162423377": "arn:aws:logs:*:*:*",
"statement.1.sid": "",
"version": "2012-10-17"
},
"meta": {},
"tainted": false
},
"deposed": [],
"provider": "provider.aws"
}
},
"depends_on": []
},
{
"path": [
"root",
"akerl-coolquotes-share"
],
"outputs": {
"dns_name": {
"sensitive": false,
"type": "string",
"value": "dc03x1y03yy6b.cloudfront.net"
}
},
"resources": {
"data.aws_iam_policy_document.lambda_perms": {
"type": "aws_iam_policy_document",
"depends_on": [],
"primary": {
"id": "2694027246",
"attributes": {
"id": "2694027246",
"json": "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Sid\": \"\",\n \"Effect\": \"Allow\",\n \"Action\": [\n \"s3:ListBucket\",\n \"s3:GetObject\"\n ],\n \"Resource\": [\n \"arn:aws:s3:::akerl-coolquotes-share/*\",\n \"arn:aws:s3:::akerl-coolquotes-share-config/*\",\n \"arn:aws:s3:::akerl-coolquotes-share-config\",\n \"arn:aws:s3:::akerl-coolquotes-share\"\n ]\n },\n {\n \"Sid\": \"\",\n \"Effect\": \"Allow\",\n \"Action\": [\n \"logs:PutLogEvents\",\n \"logs:CreateLogStream\",\n \"logs:CreateLogGroup\"\n ],\n \"Resource\": \"arn:aws:logs:*:*:*\"\n }\n ]\n}",
"statement.#": "2",
"statement.0.actions.#": "2",
"statement.0.actions.2071725391": "s3:GetObject",
"statement.0.actions.486976917": "s3:ListBucket",
"statement.0.condition.#": "0",
"statement.0.effect": "Allow",
"statement.0.not_actions.#": "0",
"statement.0.not_principals.#": "0",
"statement.0.not_resources.#": "0",
"statement.0.principals.#": "0",
"statement.0.resources.#": "4",
"statement.0.resources.1392454964": "arn:aws:s3:::akerl-coolquotes-share",
"statement.0.resources.2053357858": "arn:aws:s3:::akerl-coolquotes-share/*",
"statement.0.resources.3099904586": "arn:aws:s3:::akerl-coolquotes-share-config/*",
"statement.0.resources.3435404849": "arn:aws:s3:::akerl-coolquotes-share-config",
"statement.0.sid": "",
"statement.1.actions.#": "3",
"statement.1.actions.2809485102": "logs:CreateLogGroup",
"statement.1.actions.3285979848": "logs:CreateLogStream",
"statement.1.actions.39743051": "logs:PutLogEvents",
"statement.1.condition.#": "0",
"statement.1.effect": "Allow",
"statement.1.not_actions.#": "0",
"statement.1.not_principals.#": "0",
"statement.1.not_resources.#": "0",
"statement.1.principals.#": "0",
"statement.1.resources.#": "1",
"statement.1.resources.162423377": "arn:aws:logs:*:*:*",
"statement.1.sid": "",
"version": "2012-10-17"
},
"meta": {},
"tainted": false
},
"deposed": [],
"provider": "provider.aws"
}
},
"depends_on": []
},
{
"path": [
"root",
"akerl-dcs-library"
],
"outputs": {
"dns_name": {
"sensitive": false,
"type": "string",
"value": "d27f42y68vvkmg.cloudfront.net"
}
},
"resources": {
"data.aws_iam_policy_document.lambda_perms": {
"type": "aws_iam_policy_document",
"depends_on": [],
"primary": {
"id": "2492265245",
"attributes": {
"id": "2492265245",
"json": "{\n \"Version\": \"2012-10-17\",\n \"Statement\": [\n {\n \"Sid\": \"\",\n \"Effect\": \"Allow\",\n \"Action\": [\n \"s3:ListBucket\",\n \"s3:GetObject\"\n ],\n \"Resource\": [\n \"arn:aws:s3:::akerl-dcs-library/*\",\n \"arn:aws:s3:::akerl-dcs-library-config/*\",\n \"arn:aws:s3:::akerl-dcs-library-config\",\n \"arn:aws:s3:::akerl-dcs-library\"\n ]\n },\n {\n \"Sid\": \"\",\n \"Effect\": \"Allow\",\n \"Action\": [\n \"logs:PutLogEvents\",\n \"logs:CreateLogStream\",\n \"logs:CreateLogGroup\"\n ],\n \"Resource\": \"arn:aws:logs:*:*:*\"\n }\n ]\n}",
"statement.#": "2",
"statement.0.actions.#": "2",
"statement.0.actions.2071725391": "s3:GetObject",
"statement.0.actions.486976917": "s3:ListBucket",
"statement.0.condition.#": "0",
"statement.0.effect": "Allow",
"statement.0.not_actions.#": "0",
"statement.0.not_principals.#": "0",
"statement.0.not_resources.#": "0",
"statement.0.principals.#": "0",
"statement.0.resources.#": "4",
"statement.0.resources.2145029193": "arn:aws:s3:::akerl-dcs-library/*",
"statement.0.resources.2830782896": "arn:aws:s3:::akerl-dcs-library-config/*",
"statement.0.resources.4238403927": "arn:aws:s3:::akerl-dcs-library-config",
"statement.0.resources.777249602": "arn:aws:s3:::akerl-dcs-library",
"statement.0.sid": "",
"statement.1.actions.#": "3",
"statement.1.actions.2809485102": "logs:CreateLogGroup",
"statement.1.actions.3285979848": "logs:CreateLogStream",
"statement.1.actions.39743051": "logs:PutLogEvents",
"statement.1.condition.#": "0",
"statement.1.effect": "Allow",
"statement.1.not_actions.#": "0",
"statement.1.not_principals.#": "0",
"statement.1.not_resources.#": "0",