Skip to content

Commit

Permalink
Merge pull request #29 from hashicorp/fix_hcl_example
Browse files Browse the repository at this point in the history
Fix hcl variable in export_opts example
  • Loading branch information
Wilken Rivera authored Jun 7, 2021
2 parents 6a39862 + 4838a57 commit 2fa9da7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions builder/virtualbox/common/export_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ type ExportConfig struct {
// export_opts = [
// "--manifest",
// "--vsys", "0",
// "--description", "{{user `vm_description`}}",
// "--version", "{{user `vm_version`}}"
// "--description", "${var.vm_description}",
// "--version", "${var.vm_version}"
// ]
// format = "ova"
// }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
export_opts = [
"--manifest",
"--vsys", "0",
"--description", "{{user `vm_description`}}",
"--version", "{{user `vm_version`}}"
"--description", "${var.vm_description}",
"--version", "${var.vm_version}"
]
format = "ova"
}
Expand Down

0 comments on commit 2fa9da7

Please sign in to comment.