-
Notifications
You must be signed in to change notification settings - Fork 0
/
locals.tf
49 lines (47 loc) · 1.02 KB
/
locals.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
#--root locals.tf --
locals {
security_groups = {
ec2_sg = {
name = "ec2_sg"
description = "SG for EC2 Instances"
ingress = {
https = {
from = 443
to = 443
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
http = {
from = 80
to = 80
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ssh = {
from = 22
to = 22
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
nfs = {
from = 2049
to = 2049
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
}
}
efs_sg = {
name = "efs_sg"
description = "SG for EFS"
ingress = {
nfs = {
from = 2049
to = 2049
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
}
}
}
}