-
Notifications
You must be signed in to change notification settings - Fork 7
/
s3.tf
137 lines (115 loc) · 2.79 KB
/
s3.tf
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
resource "aws_s3_bucket" "default" {
count = local.enabled ? 1 : 0
bucket = local.bucket_name
force_destroy = var.force_destroy
tags = {
owner = "mike"
test = "no you test"
}
dynamic "object_lock_configuration" {
for_each = var.object_lock_configuration != null ? [1] : []
content {
object_lock_enabled = "Enabled"
}
}
}
resource "aws_s3_bucket_public_access_block" "default" {
count = module.this.enabled && local.public_access_block_enabled ? 1 : 0
bucket = join("", aws_s3_bucket.default.*.id)
block_public_acls = var.block_public_acls
block_public_policy = var.block_public_policy
ignore_public_acls = var.ignore_public_acls
restrict_public_buckets = var.restrict_public_buckets
}
# resource "aws_s3_bucket" "will_it_blend" {
# # bucket is public
# # bucket is not encrypted
# # bucket does not have access logs
# # bucket does not have versioning
# bucket = "xx"
# acl = "public-read"
# force_destroy = true
# tags = {
# Name = "${local.resource_prefix.value}-data"
# Environment = local.resource_prefix.value
# }
# }
# resource "aws_s3_bucket" "regular_bucket2" {
# # bucket is public
# # bucket is not encrypted
# # bucket does not have access logs
# # bucket does not have versioning
# bucket = "xx2"
# acl = "public-read"
# force_destroy = true
# tags = {
# Name = "${local.resource_prefix.value}-data"
# Environment = local.resource_prefix.value
# }
# }
# resource "aws_something_else" "x" {
# hello = "hi"
# }
module "mod" {
source = "./module"
x = "abc"
acl = "public-read"
}
module "mod2" {
source = "./module"
x = "abc"
acl = "public-read"
}
# module "iam_policy" {
# source = "terraform-aws-modules/iam/aws//modules/iam-policy"
# version = "~> 4.3"
# name = "example"
# path = "/"
# description = "My example policy"
# policy = <<EOF
# {
# "Version": "2012-10-17",
# "Statement": [
# {
# "Action": [
# "*"
# ],
# "Effect": "Allow",
# "Resource": "*"
# }
# ]
# }
# EOF
# }
# module "dynamodb_table" {
# source = "terraform-aws-modules/dynamodb-table/aws"
# name = "my-table"
# hash_key = "id"
# attributes = [
# {
# name = "id"
# type = "N"
# }
# ]
# tags = {
# Terraform = "true"
# Environment = "staging"
# }
# server_side_encryption_enabled = false
# }
# module "dynamodb_table2" {
# source = "terraform-aws-modules/dynamodb-table/aws"
# name = "my-table2"
# hash_key = "id2"
# attributes = [
# {
# name = "id2"
# type = "N"
# }
# ]
# tags = {
# Terraform = "true2"
# Environment = "staging2"
# }
# server_side_encryption_enabled = false
# }