diff options
Diffstat (limited to 'cli/test/provider/nodes')
-rw-r--r-- | cli/test/provider/nodes/couch1.json | 4 | ||||
-rw-r--r-- | cli/test/provider/nodes/couch2.json | 4 | ||||
-rw-r--r-- | cli/test/provider/nodes/ns1.json | 8 | ||||
-rw-r--r-- | cli/test/provider/nodes/ns2.json | 8 | ||||
-rw-r--r-- | cli/test/provider/nodes/vpn1.json | 8 | ||||
-rw-r--r-- | cli/test/provider/nodes/web1.json | 4 |
6 files changed, 36 insertions, 0 deletions
diff --git a/cli/test/provider/nodes/couch1.json b/cli/test/provider/nodes/couch1.json new file mode 100644 index 0000000..fe5d7e5 --- /dev/null +++ b/cli/test/provider/nodes/couch1.json @@ -0,0 +1,4 @@ +{ + "services": "couchdb", + "ip_address": "245.2.45.42" +}
\ No newline at end of file diff --git a/cli/test/provider/nodes/couch2.json b/cli/test/provider/nodes/couch2.json new file mode 100644 index 0000000..1fe2977 --- /dev/null +++ b/cli/test/provider/nodes/couch2.json @@ -0,0 +1,4 @@ +{ + "services": "couchdb", + "ip_address": "73.45.87.11" +}
\ No newline at end of file diff --git a/cli/test/provider/nodes/ns1.json b/cli/test/provider/nodes/ns1.json new file mode 100644 index 0000000..6323d10 --- /dev/null +++ b/cli/test/provider/nodes/ns1.json @@ -0,0 +1,8 @@ +# +# this is a comment +# +{ + "services": "dns", + "tags": "production", + "ip_address": "1.1.1.1" +}
\ No newline at end of file diff --git a/cli/test/provider/nodes/ns2.json b/cli/test/provider/nodes/ns2.json new file mode 100644 index 0000000..eeba9df --- /dev/null +++ b/cli/test/provider/nodes/ns2.json @@ -0,0 +1,8 @@ +# +# A nameserver +# +{ + "services": "dns", + "tags": "production", + "ip_address": "1.1.1.2" +}
\ No newline at end of file diff --git a/cli/test/provider/nodes/vpn1.json b/cli/test/provider/nodes/vpn1.json new file mode 100644 index 0000000..10859ac --- /dev/null +++ b/cli/test/provider/nodes/vpn1.json @@ -0,0 +1,8 @@ +{ + "services": "openvpn", + "ip_address": "2.2.2.2", + "tags": "production", + "openvpn": { + "gateway_address": "3.3.3.3" + } +}
\ No newline at end of file diff --git a/cli/test/provider/nodes/web1.json b/cli/test/provider/nodes/web1.json new file mode 100644 index 0000000..894fb6e --- /dev/null +++ b/cli/test/provider/nodes/web1.json @@ -0,0 +1,4 @@ +{ + "services": "webapp", + "ip_address": "6.6.7.7" +}
\ No newline at end of file |