-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.tf
54 lines (44 loc) · 942 Bytes
/
data.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
# Availability Zones
data "aws_availability_zones" "available" {
state = "available"
}
# AMI for FortiGate Instance
data "aws_ami" "fortigate" {
owners = ["aws-marketplace"]
#most_recent = true
filter {
name = "name"
values = ["FortiGate-VM64-AWSONDEMAND*7.4.0*"]
}
filter {
name = "architecture"
values = ["x86_64"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
}
data "aws_iam_policy_document" "assume_role" {
statement {
effect = "Allow"
principals {
type = "Service"
identifiers = ["vpc-flow-logs.amazonaws.com"]
}
actions = ["sts:AssumeRole"]
}
}
data "aws_iam_policy_document" "flow_logs" {
statement {
effect = "Allow"
actions = [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents",
"logs:DescribeLogGroups",
"logs:DescribeLogStreams",
]
resources = ["*"]
}
}