-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsg.tf
37 lines (31 loc) · 1.28 KB
/
sg.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
# Security Group
resource "aws_security_group" "this" {
count = var.is_create_security_group ? 1 : 0
name_prefix = format("%s-ec2-sg", local.name)
vpc_id = var.vpc_id
description = "Pritunl VPN egress rule for outbound"
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = ["::/0"]
}
tags = merge(
local.tags,
{ "Name" = format("%s-ec2-sg", local.name) },
)
}
resource "aws_security_group_rule" "ingress" {
for_each = var.is_create_security_group ? local.security_group_ingress_rules : null
type = "ingress"
from_port = lookup(each.value, "from_port", lookup(each.value, "port", null))
to_port = lookup(each.value, "to_port", lookup(each.value, "port", null))
protocol = lookup(each.value, "protocol", "tcp")
security_group_id = aws_security_group.this[0].id
cidr_blocks = lookup(each.value, "cidr_blocks", null)
description = lookup(each.value, "description", null)
ipv6_cidr_blocks = lookup(each.value, "ipv6_cidr_blocks", null)
prefix_list_ids = lookup(each.value, "prefix_list_ids", null)
source_security_group_id = lookup(each.value, "source_security_group_id", null)
}