summaryrefslogtreecommitdiff
path: root/vendor/github.com/mitchellh/packer/test/fixtures/builder-lxc/minimal.json
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mitchellh/packer/test/fixtures/builder-lxc/minimal.json')
-rw-r--r--vendor/github.com/mitchellh/packer/test/fixtures/builder-lxc/minimal.json15
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/github.com/mitchellh/packer/test/fixtures/builder-lxc/minimal.json b/vendor/github.com/mitchellh/packer/test/fixtures/builder-lxc/minimal.json
new file mode 100644
index 00000000..5bf7998f
--- /dev/null
+++ b/vendor/github.com/mitchellh/packer/test/fixtures/builder-lxc/minimal.json
@@ -0,0 +1,15 @@
+{
+ "variables": {
+ "template_name": "debian",
+ "template_parameters": "SUITE=jessie"
+ },
+ "builders": [
+ {
+ "type": "lxc",
+ "name": "lxc-{{user `template_name`}}",
+ "template_name": "{{user `template_name`}}",
+ "config_file": "/usr/share/lxc/config/{{user `template_name`}}.common.conf",
+ "template_environment_vars": [ "{{user `template_parameters`}}" ]
+ }
+ ]
+}