Skip to content

Commit

Permalink
fix: start nillion bind to public
Browse files Browse the repository at this point in the history
  • Loading branch information
aidenSepiol committed Sep 16, 2024
1 parent 6a5a787 commit 0acfada
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 7 additions & 4 deletions infra/modules/network/nillion/sercurity_group.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@ resource "aws_security_group" "ecs" {
vpc_id = var.vpc_id

ingress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = [var.vpc_cidr_block]
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = [
var.vpc_cidr_block,
"222.253.79.150/32" # Odin Hoang home IP
]
}

egress {
Expand Down
2 changes: 1 addition & 1 deletion nillion_local/run.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
cd /root/.nilup/bin
./nillion-devnet --seed nillion-seed
./nillion-devnet --seed nillion-seed --bind-address 0.0.0.0

0 comments on commit 0acfada

Please sign in to comment.