Skip to content

Commit

Permalink
Open credhub port 8844 from jumpbox to director on aws.
Browse files Browse the repository at this point in the history
[#155191798]

Signed-off-by: Desmond Pompa Alarcon Rawls <[email protected]>
  • Loading branch information
Genevieve LEsperance authored and desmondrawls committed Feb 13, 2018
1 parent 92100f8 commit 35cbf87
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/aws/templates.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions terraform/aws/templates/base.tf
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,15 @@ resource "aws_security_group_rule" "bosh_security_group_rule_uaa" {
cidr_blocks = ["${var.bosh_inbound_cidr}"]
}

resource "aws_security_group_rule" "bosh_security_group_rule_credhub" {
security_group_id = "${aws_security_group.bosh_security_group.id}"
type = "ingress"
protocol = "tcp"
from_port = 8844
to_port = 8844
source_security_group_id = "${aws_security_group.internal_security_group.id}"
}

resource "aws_security_group_rule" "bosh_security_group_rule_tcp_director_api" {
security_group_id = "${aws_security_group.bosh_security_group.id}"
type = "ingress"
Expand Down

0 comments on commit 35cbf87

Please sign in to comment.