-
Notifications
You must be signed in to change notification settings - Fork 0
/
log.tf
59 lines (53 loc) · 1.13 KB
/
log.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
/* resource "aws_flow_log" "corusant" {
iam_role_arn = aws_iam_role.corusant.arn
log_destination = aws_cloudwatch_log_group.corusant.arn
traffic_type = "ALL"
//vpc_id = aws_vpc.sidera_cloud.id
subnet_id = aws_subnet.sc_ldap.id
max_aggregation_interval = 60
//subnet_id = aws_subnet.sc_kasm_db2.id
}
resource "aws_cloudwatch_log_group" "corusant" {
name = "corusant"
retention_in_days= 7
}
resource "aws_iam_role" "corusant" {
name = "corusant"
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "",
"Effect": "Allow",
"Principal": {
"Service": "vpc-flow-logs.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
}
EOF
}
resource "aws_iam_role_policy" "corusant" {
name = "corusant"
role = aws_iam_role.corusant.id
policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents",
"logs:DescribeLogGroups",
"logs:DescribeLogStreams"
],
"Effect": "Allow",
"Resource": "*"
}
]
}
EOF
} */