generated from ministryofjustice/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.tf
124 lines (112 loc) · 2.74 KB
/
main.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
module "s3-bucket" {
source = "github.com/ministryofjustice/modernisation-platform-terraform-s3-bucket?ref=8688bc15a08fbf5a4f4eef9b7433c5a417df8df1"
providers = {
aws.bucket-replication = aws.bucket-replication
}
bucket_prefix = var.bucket_prefix
replication_enabled = false
lifecycle_rule = [
{
id = "main"
enabled = "Enabled"
prefix = ""
tags = {
rule = "log"
autoclean = "true"
}
transition = [
{
days = 90
storage_class = "STANDARD_IA"
}, {
days = 365
storage_class = "GLACIER"
}
]
expiration = {
days = 730
}
noncurrent_version_transition = [
{
days = 90
storage_class = "STANDARD_IA"
}, {
days = 365
storage_class = "GLACIER"
}
]
noncurrent_version_expiration = {
days = 730
}
}
]
tags = var.tags
}
resource "aws_iam_role" "vmimport" {
name = "vmimport"
assume_role_policy = data.aws_iam_policy_document.vmimport-trust-policy.json
tags = merge(
var.tags,
{
Name = "${var.application_name}-vmimport-role"
}
)
}
data "aws_iam_policy_document" "vmimport-trust-policy" {
version = "2012-10-17"
statement {
sid = ""
effect = "Allow"
actions = [
"sts:AssumeRole",
]
principals {
type = "Service"
identifiers = [
"vmie.amazonaws.com"
]
}
}
}
#tfsec:ignore:aws-iam-no-policy-wildcards
resource "aws_iam_policy" "vmimport-policy" {
#checkov:skip=CKV_AWS_289: "Wildcard used as this is a consumable module"
#checkov:skip=CKV_AWS_290: "Wildcard used as this is a consumable module"
#checkov:skip=CKV_AWS_355: "ec2:Describe* achieves same goal as allowing all describe actions"
name = "vmimport-policy-${var.application_name}"
policy = <<EOF
{
"Version":"2012-10-17",
"Statement":[
{
"Effect": "Allow",
"Action": [
"s3:GetBucketLocation",
"s3:GetObject",
"s3:ListBucket",
"s3:PutObject",
"s3:GetBucketAcl"
],
"Resource": [
"${module.s3-bucket.bucket.arn}",
"${module.s3-bucket.bucket.arn}/*"
]
},
{
"Effect": "Allow",
"Action": [
"ec2:ModifySnapshotAttribute",
"ec2:CopySnapshot",
"ec2:RegisterImage",
"ec2:Describe*"
],
"Resource": "*"
}
]
}
EOF
}
resource "aws_iam_role_policy_attachment" "vmimport_policy_attachment" {
role = aws_iam_role.vmimport.name
policy_arn = aws_iam_policy.vmimport-policy.arn
}