Skip to content

Commit c4ece8b

Browse files
author
Dmitry Berezovsky
committedJun 1, 2017
Added elastic IP to the domain controller instance. Fixed security group
1 parent e269485 commit c4ece8b

File tree

1 file changed

+6
-1
lines changed
  • modules/domain_controller

1 file changed

+6
-1
lines changed
 

‎modules/domain_controller/ec2.tf

+6-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ resource "aws_security_group" "clearos" {
2727
to_port = 1194
2828
cidr_blocks = [
2929
"${var.trusted_networks_vpn}"]
30-
protocol = "tcp"
30+
protocol = "udp"
3131
}
3232

3333
tags {
@@ -99,4 +99,9 @@ resource "aws_volume_attachment" "clearos_data_volume" {
9999
force_detach = true
100100
volume_id = "${aws_ebs_volume.clearos_data_volume.id}"
101101
instance_id = "${aws_instance.clearos.id}"
102+
}
103+
104+
resource "aws_eip" "clearos" {
105+
vpc = true
106+
instance = "${aws_instance.clearos.id}"
102107
}

0 commit comments

Comments
 (0)
Please sign in to comment.