-
Notifications
You must be signed in to change notification settings - Fork 2
/
backup.tf
84 lines (68 loc) · 1.69 KB
/
backup.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
locals {
user = "akerl-backups"
}
data "aws_iam_policy_document" "s3-write" {
statement {
actions = [
"s3:ListBucket",
"s3:PutObject",
"s3:DeleteObject",
]
resources = [
"arn:aws:s3:::${local.user}",
"arn:aws:s3:::${local.user}/*",
]
}
}
resource "aws_s3_bucket" "backups" {
bucket = local.user
}
resource "aws_s3_bucket_lifecycle_configuration" "backups" {
bucket = aws_s3_bucket.backups.id
rule {
id = "expiry"
status = "Enabled"
filter {}
noncurrent_version_expiration {
noncurrent_days = 30
}
}
}
resource "aws_s3_bucket_public_access_block" "backups" {
bucket = aws_s3_bucket.backups.id
block_public_acls = true
block_public_policy = true
ignore_public_acls = true
restrict_public_buckets = true
}
resource "aws_s3_bucket_server_side_encryption_configuration" "backups" { #trivy:ignore:AVD-AWS-0132
bucket = aws_s3_bucket.backups.id
rule {
apply_server_side_encryption_by_default {
sse_algorithm = "AES256"
}
}
}
resource "aws_s3_bucket_versioning" "backups" {
bucket = aws_s3_bucket.backups.id
versioning_configuration {
status = "Enabled"
}
}
resource "aws_s3_bucket_logging" "backups" {
bucket = aws_s3_bucket.backups.id
target_bucket = aws_s3_bucket.logging.id
target_prefix = "${aws_s3_bucket.backups.id}/"
}
resource "aws_iam_user_policy" "backups" {
user = local.user
name = "s3-write"
policy = data.aws_iam_policy_document.s3-write.json
}
resource "awscreds_iam_access_key" "backups" {
user = local.user
file = "creds/${local.user}"
}
resource "aws_iam_user" "backups" { #trivy:ignore:AVD-AWS-0143
name = local.user
}