diff options
Diffstat (limited to 'nodes')
-rw-r--r-- | nodes/aligator.json | 14 | ||||
-rw-r--r-- | nodes/ca1.json | 5 | ||||
-rw-r--r-- | nodes/couch1.json | 4 | ||||
-rw-r--r-- | nodes/koala.json | 6 | ||||
-rw-r--r-- | nodes/monitor1.json | 4 | ||||
-rw-r--r-- | nodes/sloth.json | 8 | ||||
-rw-r--r-- | nodes/tor1.json | 4 | ||||
-rw-r--r-- | nodes/turtle.json | 8 | ||||
-rw-r--r-- | nodes/vpn1.json | 9 | ||||
-rw-r--r-- | nodes/web1.json | 4 |
10 files changed, 66 insertions, 0 deletions
diff --git a/nodes/aligator.json b/nodes/aligator.json new file mode 100644 index 0000000..d647d30 --- /dev/null +++ b/nodes/aligator.json @@ -0,0 +1,14 @@ +{ + "services": [ "openvpn", "tor" ], + "tor": { + "type": "exit", + "nickname": "alligator" + }, + "ip_address": "176.53.69.121", + "interface": "eth0", + "tags": "production", + "openvpn": { + "gateway_address": "176.53.69.123", + "filter_dns": true + } +} diff --git a/nodes/ca1.json b/nodes/ca1.json new file mode 100644 index 0000000..a4ea563 --- /dev/null +++ b/nodes/ca1.json @@ -0,0 +1,5 @@ +{ + "services": "ca", + "ip_address": "10.5.5.48", + "interface": "eth0" +} diff --git a/nodes/couch1.json b/nodes/couch1.json new file mode 100644 index 0000000..4b1dde1 --- /dev/null +++ b/nodes/couch1.json @@ -0,0 +1,4 @@ +{ + "services": "couchdb", + "ip_address": "10.5.5.44" +} diff --git a/nodes/koala.json b/nodes/koala.json new file mode 100644 index 0000000..7484a99 --- /dev/null +++ b/nodes/koala.json @@ -0,0 +1,6 @@ +{ + "services": "ca", + "ip_address": "176.53.69.125", + "interface": "eth0", + "tags": "production" +} diff --git a/nodes/monitor1.json b/nodes/monitor1.json new file mode 100644 index 0000000..8506ca4 --- /dev/null +++ b/nodes/monitor1.json @@ -0,0 +1,4 @@ +{ + "ip_address": "10.5.5.49", + "services": "monitor" +} diff --git a/nodes/sloth.json b/nodes/sloth.json new file mode 100644 index 0000000..7ce5483 --- /dev/null +++ b/nodes/sloth.json @@ -0,0 +1,8 @@ +{ + "services": "couchdb", + "ip_address": "176.53.69.122", + "ssh": { + "port": 4422 + }, + "tags": "production" +} diff --git a/nodes/tor1.json b/nodes/tor1.json new file mode 100644 index 0000000..0e97fd9 --- /dev/null +++ b/nodes/tor1.json @@ -0,0 +1,4 @@ +{ + "ip_address": "10.5.5.50", + "services": "tor" +} diff --git a/nodes/turtle.json b/nodes/turtle.json new file mode 100644 index 0000000..47ca51d --- /dev/null +++ b/nodes/turtle.json @@ -0,0 +1,8 @@ +{ + "services": [ "webapp", "monitor" ], + "tags": "production", + "ip_address": "176.53.69.119", + "ssh": { + "port": 22 + } +} diff --git a/nodes/vpn1.json b/nodes/vpn1.json new file mode 100644 index 0000000..12e01d6 --- /dev/null +++ b/nodes/vpn1.json @@ -0,0 +1,9 @@ +{ + "services": "openvpn", + "ip_address": "10.5.5.45", + "interface": "eth0", + "openvpn": { + "gateway_address": "10.5.5.46", + "filter_dns": true + } +} diff --git a/nodes/web1.json b/nodes/web1.json new file mode 100644 index 0000000..689ce62 --- /dev/null +++ b/nodes/web1.json @@ -0,0 +1,4 @@ +{ + "services": "webapp", + "ip_address": "10.5.5.47" +} |