diff options
author | Micah Anderson <micah@riseup.net> | 2012-11-13 17:38:05 -0500 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2012-11-13 17:38:05 -0500 |
commit | 83e00551c65eb09e5e96f63c6ec4465fae4249a7 (patch) | |
tree | facc62e13ab404734f25dcf8ce160a18ee79982c | |
parent | 3866cfc8c4976b84b62b1a831b1e8baa1bef4daf (diff) |
add vagrant specific node configurations
-rw-r--r-- | provider/nodes/couchdb1_vagrant.json | 7 | ||||
-rw-r--r-- | provider/nodes/vpn1_vagrant.json | 13 | ||||
-rw-r--r-- | provider/nodes/web1_vagrant.json | 5 |
3 files changed, 25 insertions, 0 deletions
diff --git a/provider/nodes/couchdb1_vagrant.json b/provider/nodes/couchdb1_vagrant.json new file mode 100644 index 0000000..6b7077e --- /dev/null +++ b/provider/nodes/couchdb1_vagrant.json @@ -0,0 +1,7 @@ +{ + "services": "couchdb", + "tags": ["vagrant"], + "ip_address": "10.5.5.44", + "ssh": { + "port": 4422 } +} diff --git a/provider/nodes/vpn1_vagrant.json b/provider/nodes/vpn1_vagrant.json new file mode 100644 index 0000000..074f27a --- /dev/null +++ b/provider/nodes/vpn1_vagrant.json @@ -0,0 +1,13 @@ +{ + "services": "openvpn", + "tags": ["vagrant"], + "ip_address": "10.5.5.45", + "interface": "eth0", + "ssh": { + "port": 4422 }, + "tags": "production", + "openvpn": { + "gateway_address": "10.5.5.46", + "filter_dns": true + } +} diff --git a/provider/nodes/web1_vagrant.json b/provider/nodes/web1_vagrant.json new file mode 100644 index 0000000..4e80ba9 --- /dev/null +++ b/provider/nodes/web1_vagrant.json @@ -0,0 +1,5 @@ +{ + "services": "webapp", + "tags": ["vagrant"], + "ip_address": "10.5.5.47" +} |