We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 817d8f1 commit 79ca9cbCopy full SHA for 79ca9cb
main.tf
@@ -15,15 +15,6 @@ resource "aws_security_group" "pritunl" {
15
cidr_blocks = var.internal_cidrs
16
}
17
18
- # HTTP access for Let's Encrypt validation
19
- ingress {
20
- from_port = 80
21
- to_port = 80
22
- protocol = "tcp"
23
-
24
- cidr_blocks = var.whitelist_http
25
- }
26
27
# HTTPS access
28
ingress {
29
from_port = 443
outputs.tf
@@ -5,3 +5,7 @@ output "pritunl_private_ip" {
5
output "pritunl_public_ip" {
6
value = "${aws_instance.pritunl.public_ip}"
7
8
+
9
+output "main_security_group_id" {
10
+ value = "${aws_security_group.pritunl.id}"
11
+}
0 commit comments