1
1
# Automation goes here
2
2
3
- locals {
4
- # Read bucket definitions
5
- definitions = merge ([for f in fileset (path. module , " ./resources/*.yaml" ) : yamldecode (file (" ${ path . module } /${ f } " ))]... )
6
- buckets = { for key , bucket in local . definitions : key => bucket if (try (bucket. disable_s3 , false ) == false ) }
7
- notification_buckets = { for key , bucket in local . definitions : key => bucket if (try (length (bucket. notifications ) > 0 , false )) }
8
3
9
- # Read bucket policies
10
- policies = merge ([for f in fileset (path. module , " ./resources/policies/*.json" ) : { " ${ f } " : file (" ${ path . module } /${ f } " ) }]... )
11
-
12
- # Read transfer definitions
13
- transfer_families = { for key , configs in local . definitions : key => configs . transfer if (try (length (configs. transfer ) > 0 , false )) }
14
- }
15
-
16
-
17
-
18
- module "s3-bucket" {
19
- source = " terraform-aws-modules/s3-bucket/aws"
20
- version = " 4.1.2"
21
-
22
- for_each = local. buckets
23
-
24
- bucket = can (each. value . bucket_prefix ) ? null : each. key
25
-
26
- acceleration_status = try (each. value . acceleration_status , null )
27
- acl = try (each. value . acl , null )
28
- analytics_configuration = try (each. value . analytics_configuration , {})
29
- attach_deny_insecure_transport_policy = try (each. value . attach_deny_insecure_transport_policy , false )
30
- attach_deny_unencrypted_object_uploads = try (each. value . attach_deny_unencrypted_object_uploads , false )
31
- attach_elb_log_delivery_policy = try (each. value . attach_elb_log_delivery_policy , false )
32
- attach_inventory_destination_policy = try (each. value . attach_inventory_destination_policy , false )
33
- attach_lb_log_delivery_policy = try (each. value . attach_lb_log_delivery_policy , false )
34
- attach_policy = try (each. value . attach_policy , false )
35
- attach_public_policy = try (each. value . attach_public_policy , true )
36
- attach_require_latest_tls_policy = try (each. value . attach_require_latest_tls_policy , false )
37
- block_public_acls = try (each. value . block_public_acls , false )
38
- block_public_policy = try (each. value . block_public_policy , false )
39
- bucket_prefix = try (each. value . bucket_prefix , null )
40
- control_object_ownership = try (each. value . control_object_ownership , false )
41
- cors_rule = try (each. value . cors_rule , [])
42
- create_bucket = try (each. value . create_bucket , true )
43
- expected_bucket_owner = try (each. value . expected_bucket_owner , null )
44
- force_destroy = try (each. value . force_destroy , false )
45
- grant = try (each. value . grant , [])
46
- ignore_public_acls = try (each. value . ignore_public_acls , false )
47
- intelligent_tiering = try (each. value . intelligent_tiering , {})
48
- inventory_configuration = try (each. value . inventory_configuration , {})
49
- lifecycle_rule = try (each. value . lifecycle_rule , [])
50
- logging = try (each. value . logging , {})
51
- metric_configuration = try (each. value . metric_configuration , [])
52
- object_lock_configuration = try (each. value . object_lock_configuration , {})
53
- object_lock_enabled = try (each. value . object_lock_enabled , false )
54
- object_ownership = try (each. value . object_ownership , " ObjectWriter" )
55
- policy = try (local. policies [" resources/policies/${ each . key } .json" ], null )
56
- replication_configuration = try (each. value . replication_configuration , {})
57
- request_payer = try (each. value . request_payer , null )
58
- restrict_public_buckets = try (each. value . restrict_public_buckets , false )
59
- server_side_encryption_configuration = try (each. value . server_side_encryption_configuration , {})
60
- tags = merge (var. default_tags , try (each. value . tags , {}))
61
- versioning = try (each. value . versioning , {})
62
- website = try (each. value . website , {})
63
- }
64
-
65
-
66
- module "s3_notification" {
67
- source = " terraform-aws-modules/s3-bucket/aws//modules/notification"
68
- version = " 4.1.2"
69
-
70
- for_each = local. notification_buckets
71
-
72
- bucket = each. key
73
- create = try (each. value . notifications . create , false )
74
- bucket_arn = can (try (each. value . notifications . attach_s3_arn , true )) ? module. s3-bucket [each . key ]. s3_bucket_arn : null
75
-
76
- # SNS
77
- create_sns_policy = try (each. value . notifications . sns . attach_policy , false )
78
- sns_notifications = try (each. value . notifications . sns . definitions , {})
79
-
80
- # SQS
81
- create_sqs_policy = try (each. value . notifications . sqs . attach_policy , false )
82
- sqs_notifications = try (each. value . notifications . sqs . definitions , {})
83
-
84
- # EventBridge
85
- eventbridge = try (each. value . notifications . eventbridge , false )
86
-
87
- # Lambda
88
- lambda_notifications = try (each. value . notifications . lambda , {})
89
- }
90
-
91
- module "transfer_family" {
92
- source = " ./local_modules/transfer-family"
93
-
94
- for_each = local. transfer_families
95
- name = each. key
96
- vpc_name = each. value . vpc_name
97
- config = try (each. value , {})
98
-
99
- region = var. region
100
- default_tags = var. default_tags
101
-
102
- providers = {
103
- aws = aws
104
- }
105
- }
0 commit comments