Skip to content

Commit 026537c

Browse files
committedJun 17, 2016
fix output for bastion external ip
1 parent d3af0ef commit 026537c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎bastion/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Usage:
1111
*
1212
* module "bastion" {
13-
* source = "github.com/segmentio/stack"
13+
* source = "github.com/segmentio/stack/bastion"
1414
* region = "us-west-2"
1515
* security_groups = "sg-1,sg-2"
1616
* vpc_id = "vpc-12"
@@ -80,5 +80,5 @@ resource "aws_eip" "bastion" {
8080

8181
// Bastion external IP address.
8282
output "external_ip" {
83-
value = "${aws_eip.bastion.external_ip}"
83+
value = "${aws_eip.bastion.public_ip}"
8484
}

0 commit comments

Comments
 (0)
Please sign in to comment.