Skip to content

Commit

Permalink
Fix: agents config and qed gossip advertise
Browse files Browse the repository at this point in the history
  • Loading branch information
suizman authored and iknite committed Feb 19, 2019
1 parent 2ec809a commit 9677076
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions deploy/aws/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module "leader" {
http: ":8800"
mgmt: ":8700"
raft: "MYIP:8500"
gossip: ":8400"
gossip: "MYIP:8400"
CONFIG

}
Expand All @@ -65,7 +65,7 @@ module "follower-1" {
http: ":8800"
mgmt: ":8700"
raft: "MYIP:8500"
gossip: ":8400"
gossip: "MYIP:8400"
raft_join:
- "${module.leader.private_ip}:8700"
gossip_join:
Expand Down Expand Up @@ -95,7 +95,7 @@ module "follower-2" {
http: ":8800"
mgmt: ":8700"
raft: "MYIP:8500"
gossip: ":8400"
gossip: "MYIP:8400"
raft_join:
- "${module.leader.private_ip}:8700"
gossip_join:
Expand Down Expand Up @@ -133,7 +133,7 @@ module "agent-publisher" {
path: "/var/tmp/qed/"
agent:
node: "publisher"
bind: ":8300"
bind: "MYIP:8300"
advertise: ""
join:
- "${module.leader.private_ip}:8400"
Expand Down Expand Up @@ -164,7 +164,7 @@ module "agent-monitor" {
path: "/var/tmp/qed/"
agent:
node: "monitor"
bind: ":8200"
bind: "MYIP:8200"
advertise: ""
join:
- "${module.leader.private_ip}:8400"
Expand Down Expand Up @@ -195,7 +195,7 @@ module "agent-auditor" {
path: "/var/tmp/qed/"
agent:
node: "auditor"
bind: ":8100"
bind: "MYIP:8100"
advertise: ""
join:
- "${module.leader.private_ip}:8400"
Expand Down

0 comments on commit 9677076

Please sign in to comment.