We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e269485 commit c4ece8bCopy full SHA for c4ece8b
modules/domain_controller/ec2.tf
@@ -27,7 +27,7 @@ resource "aws_security_group" "clearos" {
27
to_port = 1194
28
cidr_blocks = [
29
"${var.trusted_networks_vpn}"]
30
- protocol = "tcp"
+ protocol = "udp"
31
}
32
33
tags {
@@ -99,4 +99,9 @@ resource "aws_volume_attachment" "clearos_data_volume" {
99
force_detach = true
100
volume_id = "${aws_ebs_volume.clearos_data_volume.id}"
101
instance_id = "${aws_instance.clearos.id}"
102
+}
103
+
104
+resource "aws_eip" "clearos" {
105
+ vpc = true
106
+ instance = "${aws_instance.clearos.id}"
107
0 commit comments