-
Notifications
You must be signed in to change notification settings - Fork 10
/
s3.tf
55 lines (44 loc) · 1.16 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
resource "aws_s3_bucket" "token" {
bucket = "cncf-envoy-token"
acl = "private"
tags = {
Environment = "Production"
}
provider = aws.us-east-1
}
resource "aws_s3_bucket_public_access_block" "token" {
bucket = aws_s3_bucket.token.id
block_public_acls = true
block_public_policy = true
ignore_public_acls = true
restrict_public_buckets = true
provider = aws.us-east-1
}
resource "aws_s3_bucket" "build-cache" {
bucket = "envoy-ci-build-cache-us-east-2"
acl = "private"
tags = {
Environment = "Production"
}
}
resource "aws_s3_bucket_public_access_block" "build-cache" {
bucket = aws_s3_bucket.build-cache.id
block_public_acls = true
block_public_policy = true
ignore_public_acls = true
restrict_public_buckets = true
}
resource "aws_s3_bucket" "ci-cache" {
bucket = "envoy-ci-cache-us-east-2"
acl = "private"
tags = {
Environment = "Production"
}
}
resource "aws_s3_bucket_public_access_block" "ci-cache" {
bucket = aws_s3_bucket.ci-cache.id
block_public_acls = true
block_public_policy = true
ignore_public_acls = true
restrict_public_buckets = true
}