Skip to content

Commit 8bb3446

Browse files
committedNov 26, 2019
2 parents 5915c0a + 8680a78 commit 8bb3446

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
 

‎outputs.tf

+16
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,22 @@ output "pritunl_public_ip" {
66
value = "${aws_instance.pritunl.public_ip}"
77
}
88

9+
output "security_group_ids" {
10+
value = ["${aws_security_group.pritunl.id}", "${aws_security_group.allow_from_office.id}"]
11+
}
12+
913
output "main_security_group_id" {
1014
value = "${aws_security_group.pritunl.id}"
1115
}
16+
17+
output "office_security_group_id" {
18+
value = "${aws_security_group.allow_from_office.id}"
19+
}
20+
21+
output "aws_instance_id" {
22+
value = "${aws_instance.pritunl.id}"
23+
}
24+
25+
output "aws_ami_id" {
26+
value = "${data.aws_ami.oracle.id}"
27+
}

0 commit comments

Comments
 (0)
Failed to load comments.