Skip to content

Commit

Permalink
Add port 8888 to terraform network def
Browse files Browse the repository at this point in the history
  • Loading branch information
suizman authored and iknite committed Feb 19, 2019
1 parent c112c41 commit 87dd8de
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions deploy/aws/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ module "security_group" {
protocol = "tcp"
cidr_blocks = "${chomp(data.http.ip.body)}/32"
},
{
from_port = 8888
to_port = 8888
protocol = "tcp"
cidr_blocks = "${chomp(data.http.ip.body)}/32"
},
{
from_port = 8600
to_port = 8600
Expand Down

0 comments on commit 87dd8de

Please sign in to comment.