-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tf
56 lines (51 loc) · 1.17 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
resource "aws_flow_log" "main" {
log_destination = "${aws_cloudwatch_log_group.main.arn}"
iam_role_arn = "${aws_iam_role.main.arn}"
vpc_id = "${var.vpc_id}"
traffic_type = "ALL"
}
# Log group to store network traffic
resource "aws_cloudwatch_log_group" "main" {
name = "/${terraform.workspace}/vpc-flow-logs"
retention_in_days = 3
}
# IAM role to store network logs
resource "aws_iam_role" "main" {
name = "${terraform.workspace}-vpc-flow-logs"
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "",
"Effect": "Allow",
"Principal": {
"Service": "vpc-flow-logs.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
}
EOF
}
# IAM policy authorizing the IAM role
resource "aws_iam_role_policy" "main" {
name = "${terraform.workspace}-vpc-flow-logs"
role = "${aws_iam_role.main.id}"
policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"logs:CreateLogStream",
"logs:PutLogEvents",
"logs:DescribeLogStreams"
],
"Effect": "Allow",
"Resource": "${aws_cloudwatch_log_group.main.arn}"
}
]
}
EOF
}