summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2012-12-12 13:28:49 -0800
committerelijah <elijah@riseup.net>2012-12-12 13:28:49 -0800
commitc871765b09b72487b0c4ad989ac50cf026e1df61 (patch)
tree3f574c8d6c3ed06670dc79766606ba15dd04a45b
parent196f7af9ba1c3435f582e5c4f30c204efcea47a5 (diff)
tag production defaults to ssh port 4422
-rw-r--r--provider/nodes/aligator.json2
-rw-r--r--provider/nodes/koala.json2
-rw-r--r--provider/nodes/turtle.json5
-rw-r--r--provider/tags/production.json7
4 files changed, 9 insertions, 7 deletions
diff --git a/provider/nodes/aligator.json b/provider/nodes/aligator.json
index 9afb4f3..40bc7de 100644
--- a/provider/nodes/aligator.json
+++ b/provider/nodes/aligator.json
@@ -2,8 +2,6 @@
"services": "openvpn",
"ip_address": "176.53.69.120",
"interface": "eth0",
- "ssh": {
- "port": 4422 },
"tags": "production",
"openvpn": {
"gateway_address": "176.53.69.121",
diff --git a/provider/nodes/koala.json b/provider/nodes/koala.json
index 1740e57..7484a99 100644
--- a/provider/nodes/koala.json
+++ b/provider/nodes/koala.json
@@ -2,7 +2,5 @@
"services": "ca",
"ip_address": "176.53.69.125",
"interface": "eth0",
- "ssh": {
- "port": 4422 },
"tags": "production"
}
diff --git a/provider/nodes/turtle.json b/provider/nodes/turtle.json
index 22d97cf..4391736 100644
--- a/provider/nodes/turtle.json
+++ b/provider/nodes/turtle.json
@@ -1,5 +1,8 @@
{
"services": "webapp",
+ "tags": "production",
"ip_address": "176.53.69.119",
- "tags": "production"
+ "ssh": {
+ "port": 22
+ }
}
diff --git a/provider/tags/production.json b/provider/tags/production.json
index b35c065..551e323 100644
--- a/provider/tags/production.json
+++ b/provider/tags/production.json
@@ -1,3 +1,6 @@
{
- "production": true
-} \ No newline at end of file
+ "production": true,
+ "ssh": {
+ "port": 4422
+ }
+}