├── .copywrite.hcl ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── feature_requests.md │ ├── plugin_integration.md │ ├── question.md │ └── ssh_or_winrm_times_out.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── labeler-issue-triage.yml └── workflows │ ├── acceptance-test.yml │ ├── auto-close-stale-issues.yml │ ├── backport.yml │ ├── build.yml │ ├── create-release-branch.yml │ ├── go-test.yml │ ├── go-validate.yml │ ├── issue-comment-created.yml │ ├── issue-migrator.yml │ ├── issues-opened.yml │ ├── jira.yml │ ├── lock.yml │ ├── nightly-release-readme.md │ └── nightly-release.yml ├── .gitignore ├── .go-version ├── .golangci.yml ├── .release ├── ci.hcl ├── docker │ └── README.md ├── packer-artifacts.hcl ├── release-metadata.hcl └── security-scan.hcl ├── CHANGELOG.md ├── CODEOWNERS ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── Vagrantfile ├── acctest ├── plugin │ ├── component_acc_test.go │ ├── plugin_acc_test.go │ └── test-fixtures │ │ ├── basic-amazon-ami-datasource.pkr.hcl │ │ └── basic-amazon-ebs.pkr.hcl ├── testing.go └── testing_test.go ├── background_check.go ├── background_check_openbsd.go ├── checkpoint.go ├── cmd ├── generate-fixer-deprecations │ └── main.go └── ssh-keygen │ └── main.go ├── command ├── build.go ├── build_cancellation_test.go ├── build_cleanup_script_test.go ├── build_parallel_test.go ├── build_test.go ├── build_timeout_test.go ├── build_windows_test.go ├── cli.go ├── command_test.go ├── configtype_enumer.go ├── console.go ├── console_test.go ├── enumflag │ └── flag.go ├── exec_test.go ├── execute.go ├── fix.go ├── fix_test.go ├── flag-kv │ ├── flag.go │ ├── flag_json.go │ ├── flag_json_test.go │ ├── flag_strings.go │ ├── flag_strings_test.go │ ├── flag_test.go │ └── test-fixtures │ │ └── basic.json ├── flag-slice │ ├── flag.go │ └── flag_test.go ├── fmt.go ├── fmt_test.go ├── hcl2_upgrade.go ├── hcl2_upgrade_test.go ├── init.go ├── init_test.go ├── inspect.go ├── inspect_test.go ├── meta.go ├── plugins.go ├── plugins_install.go ├── plugins_install_test.go ├── plugins_installed.go ├── plugins_remove.go ├── plugins_required.go ├── signal.go ├── test-fixtures │ ├── build-name-and-type │ │ ├── all.json │ │ ├── all.pkr.hcl │ │ └── buildname.pkr.hcl │ ├── build-only │ │ ├── not-found.json │ │ ├── template.json │ │ ├── template.pkr.hcl │ │ └── template.pkr.json │ ├── build-variable-sharing │ │ └── template.json │ ├── cleanup-script │ │ └── template.json │ ├── fix-invalid │ │ └── template.json │ ├── fix │ │ └── template.json │ ├── fmt │ │ ├── formatted.pkr.hcl │ │ ├── unformatted.auto.pkrvars.hcl │ │ ├── unformatted.pkr.hcl │ │ └── unformatted.pkrvars.hcl │ ├── fmt_errs │ │ └── malformed.pkr.hcl │ ├── hcl-inspect-with-sensitive-vars │ │ ├── expected-output.txt │ │ └── vars.pkr.hcl │ ├── hcl-only-except │ │ └── build.pkr.hcl │ ├── hcl │ │ ├── build-var-in-pp.pkr.hcl │ │ ├── build_no_source.pkr.hcl │ │ ├── data-source-validation.pkr.hcl │ │ ├── datasource.pkr.hcl │ │ ├── dynamic │ │ │ └── build.pkr.hcl │ │ ├── empty_object │ │ │ ├── setting.auto.pkrvars.hcl │ │ │ └── var.pkr.hcl │ │ ├── force.pkr.hcl │ │ ├── inspect │ │ │ ├── aws-builds.pkr.hcl │ │ │ ├── fruit_string.pkr.hcl │ │ │ └── virtualbox-builds.pkr.hcl │ │ ├── local-ds-validate.pkr.hcl │ │ ├── nil-component-crash.pkr.hcl │ │ ├── no_build.pkr.hcl │ │ ├── provisioner-override.pkr.hcl │ │ ├── recipes │ │ │ ├── build.pkr.hcl │ │ │ └── sources.pkr.hcl │ │ ├── recursive_local_with_input │ │ │ └── locals.pkr.hcl │ │ ├── recursive_local_with_unset_input │ │ │ └── file.pkr.hcl │ │ ├── reprepare │ │ │ ├── hello.sh │ │ │ ├── shell-local-windows.pkr.hcl │ │ │ ├── shell-local.pkr.hcl │ │ │ └── test_cmd.cmd │ │ ├── test_except_manifest.pkr.hcl │ │ ├── validation │ │ │ ├── map │ │ │ │ ├── definition.pkr.hcl │ │ │ │ ├── invalid_value.pkrvars.hcl │ │ │ │ └── valid_value.pkrvars.hcl │ │ │ └── wrong_pause_before.pkr.hcl │ │ ├── var-in-pp-name.pkr.hcl │ │ ├── variables │ │ │ ├── list_of_string │ │ │ │ └── var.pkr.hcl │ │ │ ├── ref_non_existing │ │ │ │ ├── ref_non_existing_var.pkr.hcl │ │ │ │ └── variables.auto.pkrvars.hcl │ │ │ └── untyped_var │ │ │ │ ├── settings.auto.pkrvars.hcl │ │ │ │ └── var.pkr.hcl │ │ └── vars-in-build-block.pkr.hcl │ ├── hcl2_upgrade │ │ ├── ami_test │ │ │ ├── expected.pkr.hcl │ │ │ └── input.json │ │ ├── aws-access-config │ │ │ ├── expected.pkr.hcl │ │ │ └── input.json │ │ ├── azure_shg │ │ │ ├── expected.pkr.hcl │ │ │ └── input.json │ │ ├── bundled-plugin-used │ │ │ ├── expected.pkr.hcl │ │ │ └── input.json │ │ ├── complete-variables-with-template-engine │ │ │ ├── expected.pkr.hcl │ │ │ └── input.json │ │ ├── complete │ │ │ ├── expected.pkr.hcl │ │ │ └── input.json │ │ ├── error-cleanup-provisioner │ │ │ ├── expected.pkr.hcl │ │ │ └── input.json │ │ ├── escaping │ │ │ ├── expected.pkr.hcl │ │ │ └── input.json │ │ ├── minimal │ │ │ ├── expected.pkr.hcl │ │ │ └── input.json │ │ ├── placeholders │ │ │ ├── expected.pkr.hcl │ │ │ └── input.json │ │ ├── source-name │ │ │ ├── expected.pkr.hcl │ │ │ └── input.json │ │ ├── undeclared-variables │ │ │ ├── expected.pkr.hcl │ │ │ └── input.json │ │ ├── unknown_builder │ │ │ ├── expected.pkr.hcl │ │ │ └── input.json │ │ ├── varfile-with-no-variables-block │ │ │ ├── expected.pkr.hcl │ │ │ ├── input.json │ │ │ └── variables.json │ │ ├── variables-only │ │ │ ├── expected.pkr.hcl │ │ │ └── input.json │ │ ├── variables-with-variables │ │ │ ├── expected.pkr.hcl │ │ │ └── input.json │ │ ├── vsphere_linux_options_and_network_interface │ │ │ ├── expected.pkr.hcl │ │ │ └── input.json │ │ └── without-annotations │ │ │ ├── expected.pkr.hcl │ │ │ └── input.json │ ├── hcp │ │ ├── build-description.pkr.hcl │ │ ├── deprecated_labels.pkr.hcl │ │ ├── dup_build_blocks.pkr.hcl │ │ ├── duplicate.pkr.hcl │ │ ├── hcp_build.json │ │ ├── hcp_normal.pkr.json │ │ ├── multiple_sources.pkr.hcl │ │ ├── override-build-description.pkr.hcl │ │ ├── slug.pkr.hcl │ │ └── variable-for-bucket_name.pkr.hcl │ ├── inspect │ │ └── unset_var.json │ ├── parallel │ │ ├── 1lock-5wg.json │ │ ├── 1lock.json │ │ ├── 2lock-4wg.json │ │ ├── 2lock-timeout.json │ │ └── 2lock.json │ ├── provisioners │ │ ├── provisioner-only-except.json │ │ ├── provisioner-only-except.pkr.hcl │ │ └── provisioner-override.json │ ├── timeout │ │ └── template.json │ ├── validate-invalid │ │ ├── bad_provisioner.json │ │ ├── broken.json │ │ └── missing_build_block.pkr.hcl │ ├── validate │ │ ├── build.json │ │ ├── build.pkr.hcl │ │ ├── build_with_vars.pkr.hcl │ │ ├── circular_error.pkr.hcl │ │ ├── datasource.pkr.hcl │ │ ├── invalid_block_type.pkr.hcl │ │ ├── invalid_packer_block.pkr.hcl │ │ ├── null_var.json │ │ ├── template.json │ │ ├── validate_except.json │ │ ├── validate_except.pkr.hcl │ │ ├── var-file-tests │ │ │ ├── basic.pkr.hcl │ │ │ ├── basic.pkrvars.hcl │ │ │ ├── undeclared.json │ │ │ └── undeclared.pkrvars.hcl │ │ └── var_foo_with_no_default.pkr.hcl │ ├── var-arg │ │ ├── apple.hcl │ │ ├── apple.json │ │ ├── banana.json │ │ ├── chocolate.auto.pkrvars.hcl │ │ ├── fruit_builder.json │ │ ├── fruit_builder.pkr.hcl │ │ ├── map.pkr.hcl │ │ ├── var-arg-test-autovar-json │ │ │ ├── fruit_builder.pkr.hcl │ │ │ └── peanut.auto.pkrvars.json │ │ └── var-arg-tests │ │ │ ├── fruit_builder.pkr.hcl │ │ │ ├── icecream.auto.pkrvrs.hcl │ │ │ └── peanut.auto.pkrvars.json │ └── version_req │ │ ├── base_failure │ │ └── version.pkr.hcl │ │ ├── base_success │ │ └── version.pkr.hcl │ │ └── wrong_field_name │ │ └── version.pkr.hcl ├── test_utils.go ├── utils.go ├── utils_test.go ├── validate.go ├── validate_test.go ├── version.go └── version_test.go ├── commands.go ├── config.go ├── config_test.go ├── contrib └── zsh-completion │ └── _packer ├── datasource ├── .gitkeep ├── hcp-packer-artifact │ ├── data.go │ └── data.hcl2spec.go ├── hcp-packer-image │ ├── data.go │ └── data.hcl2spec.go ├── hcp-packer-iteration │ ├── data.go │ ├── data.hcl2spec.go │ ├── data_acc_test.go │ └── test-fixtures │ │ ├── hcp-setup-build.pkr.hcl │ │ └── template.pkr.hcl ├── hcp-packer-version │ ├── data.go │ ├── data.hcl2spec.go │ ├── data_acc_test.go │ └── test-fixtures │ │ ├── hcp-setup-build.pkr.hcl │ │ └── template.pkr.hcl ├── http │ ├── data.go │ ├── data.hcl2spec.go │ ├── data_acc_test.go │ └── test-fixtures │ │ ├── 404_url.pkr.hcl │ │ ├── basic.pkr.hcl │ │ ├── empty_url.pkr.hcl │ │ └── invalid_method.pkr.hcl └── null │ ├── data.go │ └── data.hcl2spec.go ├── examples ├── _common │ ├── minimize.sh │ ├── parallels.sh │ ├── sshd.sh │ ├── vagrant.sh │ ├── virtualbox.sh │ └── vmware.sh ├── hcl │ └── linux │ │ ├── README.md │ │ ├── build.alpine.pkr.hcl │ │ ├── build.ubuntu.pkr.hcl │ │ ├── etc │ │ ├── http │ │ │ ├── alpine-answers │ │ │ ├── alpine-setup.sh │ │ │ ├── alpine-vsphere-answers │ │ │ ├── preseed.cfg │ │ │ └── preseed_hardcoded_ip.cfg │ │ └── scripts │ │ │ ├── 010-update.sh │ │ │ ├── 020-sshd.sh │ │ │ ├── 030-networking.sh │ │ │ ├── 040-sudoers.sh │ │ │ ├── 050-vagrant.sh │ │ │ ├── 060-virtualbox.sh │ │ │ ├── 070-vmware.sh │ │ │ ├── 080-parallels.sh │ │ │ ├── 090-hyperv.sh │ │ │ ├── 100-cleanup.sh │ │ │ └── 110-minimize.sh │ │ ├── source.esxi-vmware-iso.pkr.hcl │ │ ├── source.parallels-iso.pkr.hcl │ │ ├── source.qemu.pkr.hcl │ │ ├── source.virtualbox-iso.pkr.hcl │ │ ├── source.vmware-iso.pkr.hcl │ │ ├── source.vmware-vmx.pkr.hcl │ │ ├── source.vsphere-iso.pkr.hcl │ │ ├── variables.16.04.pkr.hcl │ │ ├── variables.18.04.pkr.hcl │ │ ├── variables.alpine.pkr.hcl │ │ └── variables.common.pkr.hcl └── preseeds │ └── ubuntu_preseed.cfg ├── fix ├── fixer.go ├── fixer_amazon_enhanced_networking.go ├── fixer_amazon_enhanced_networking_test.go ├── fixer_amazon_private_ip.go ├── fixer_amazon_private_ip_test.go ├── fixer_amazon_shutdown_behavior.go ├── fixer_amazon_shutdown_behavior_test.go ├── fixer_amazon_spot_price_product.go ├── fixer_amazon_temporary_security_group_cidrs.go ├── fixer_amazon_temporary_security_group_cidrs_test.go ├── fixer_azure_exclude_from_latest.go ├── fixer_azure_exclude_from_latest_test.go ├── fixer_clean_image_name.go ├── fixer_clean_image_name_test.go ├── fixer_comm_config.go ├── fixer_comm_config_test.go ├── fixer_createtime.go ├── fixer_createtime_test.go ├── fixer_docker_email.go ├── fixer_galaxy_command.go ├── fixer_galaxy_command_test.go ├── fixer_hyperv_cpu_and_ram_naming.go ├── fixer_hyperv_deprecations.go ├── fixer_hyperv_deprecations_test.go ├── fixer_hyperv_vmxc_typo.go ├── fixer_hyperv_vmxc_typo_test.go ├── fixer_iso_checksum_type_and_url.go ├── fixer_iso_checksum_type_and_url_test.go ├── fixer_iso_md5.go ├── fixer_iso_md5_test.go ├── fixer_parallels_deprecations.go ├── fixer_parallels_deprecations_test.go ├── fixer_parallels_headless.go ├── fixer_parallels_headless_test.go ├── fixer_powershell_escapes.go ├── fixer_pp_docker_tag_tags.go ├── fixer_pp_docker_tag_tags_test.go ├── fixer_pp_manifest_filename.go ├── fixer_pp_manifest_filename_test.go ├── fixer_pp_vagrant_override.go ├── fixer_pp_vagrant_override_test.go ├── fixer_proxmox_type.go ├── fixer_proxmox_type_test.go ├── fixer_qemu_disk_size.go ├── fixer_qemu_disk_size_test.go ├── fixer_qemu_host_port.go ├── fixer_qemu_host_port_test.go ├── fixer_scaleway_access_key.go ├── fixer_scaleway_access_key_test.go ├── fixer_ssh_timeout.go ├── fixer_ssh_timeout_test.go ├── fixer_sshdisableagent.go ├── fixer_sshdisableagent_test.go ├── fixer_sshkeypath.go ├── fixer_sshkeypath_test.go ├── fixer_test.go ├── fixer_virtualbox_gaattach.go ├── fixer_virtualbox_gaattach_test.go ├── fixer_virtualbox_rename.go ├── fixer_virtualbox_rename_test.go ├── fixer_vmware_compaction.go ├── fixer_vmware_compaction_test.go ├── fixer_vmware_rename.go ├── fixer_vmware_rename_test.go ├── fixer_vsphere_network_storage.go ├── fixer_vsphere_network_storage_test.go └── helpers.go ├── go ├── go.mod ├── go.sum ├── hcl2template ├── addrs │ ├── doc.go │ ├── input_variable.go │ ├── parse_ref.go │ ├── plugin.go │ ├── plugin_test.go │ └── referenceable.go ├── common_test.go ├── components.go ├── decode.go ├── docs.go ├── fixtures │ ├── malformed_override.pkr.hcl │ ├── malformed_override_innards.pkr.hcl │ └── well_formed_provisioner.pkr.hcl ├── formatter.go ├── formatter_test.go ├── function │ ├── Consul.go │ ├── alltrue.go │ ├── alltrue_test.go │ ├── anytrue.go │ ├── anytrue_test.go │ ├── aws_secretetkey.go │ ├── datetime.go │ ├── datetime_test.go │ ├── encoding.go │ ├── encoding_test.go │ ├── ends_with.go │ ├── ends_with_test.go │ ├── env.go │ ├── filebase64.go │ ├── filebase64_test.go │ ├── index.go │ ├── index_test.go │ ├── length.go │ ├── length_test.go │ ├── refinements.go │ ├── starts_with.go │ ├── starts_with_test.go │ ├── strcontains.go │ ├── strcontains_test.go │ ├── sum.go │ ├── sum_test.go │ ├── templatefile.go │ ├── templatefile_test.go │ ├── testdata │ │ ├── bare.tmpl │ │ ├── func.tmpl │ │ ├── hello.tmpl │ │ ├── hello.txt │ │ ├── icon.png │ │ ├── list.tmpl │ │ └── recursive.tmpl │ └── vault.go ├── functions.go ├── internal │ ├── mock.go │ └── mock.hcl2spec.go ├── parser.go ├── plugin.go ├── repl │ ├── format.go │ └── repl.go ├── shim │ ├── mock.go │ ├── mock.hcl2spec.go │ ├── values.go │ └── values_test.go ├── testdata │ ├── build.pkr.hcl │ │ └── basic.pkr.hcl │ ├── build │ │ ├── basic.pkr.hcl │ │ ├── invalid_build_name_variable.pkr.hcl │ │ ├── invalid_source_reference.pkr.hcl │ │ ├── named.pkr.hcl │ │ ├── post-processor_build_name_interpolation.pkr.hcl │ │ ├── post-processor_nonexistent.pkr.hcl │ │ ├── post-processor_onlyexcept.pkr.hcl │ │ ├── post-processor_untyped.pkr.hcl │ │ ├── provisioner_build_name_interpolation.pkr.hcl │ │ ├── provisioner_nonexistent.pkr.hcl │ │ ├── provisioner_onlyexcept.pkr.hcl │ │ ├── provisioner_packer_version_interpolation.pkr.hcl │ │ ├── provisioner_paused_before_retry.pkr.hcl │ │ ├── provisioner_timeout.pkr.hcl │ │ ├── provisioner_untyped.pkr.hcl │ │ ├── two-error-cleanup-provisioner.pkr.hcl │ │ └── variables.pkr.hcl │ ├── communicator │ │ └── basic.pkr.hcl │ ├── complete │ │ ├── build.pkr.hcl │ │ ├── datasource.pkr.hcl │ │ ├── sources.pkr.hcl │ │ └── variables.pkr.hcl │ ├── datasources │ │ ├── basic.pkr.hcl │ │ ├── dependency_cycle.pkr.hcl │ │ ├── duplicate.pkr.hcl │ │ ├── nonexistent.pkr.hcl │ │ ├── not-allowed.pkr.hcl │ │ ├── recursive.pkr.hcl │ │ ├── unnamed.pkr.hcl │ │ └── untyped.pkr.hcl │ ├── empty │ │ └── .gitkeep │ ├── format │ │ ├── formatted.pkr.hcl │ │ ├── test.json │ │ ├── unformatted.pkr.hcl │ │ └── unformatted.pkrvars.hcl │ ├── hcp_par │ │ ├── build-block-error-multiple-hcp-declaration.pkr.hcl │ │ ├── build-block-ok-bucket.pkr.hcl │ │ ├── build-block-ok-multiple-build-block-second-block.pkr.hcl │ │ ├── build-block-ok-multiple-build-block.pkr.hcl │ │ ├── top-level-and-build-block.pkr.hcl │ │ ├── top-level-empty-bucket.pkr.hcl │ │ ├── top-level-invalid-bucket.pkr.hcl │ │ ├── top-level-invalid.pkr.hcl │ │ ├── top-level-long-bucket.pkr.hcl │ │ ├── top-level-long-description.pkr.hcl │ │ ├── top-level-ok-bucket.pkr.hcl │ │ ├── top-level-short-bucket.pkr.hcl │ │ ├── top-level-variable-for-bucket-name.pkr.hcl │ │ └── top-level-variables-for-labels.pkr.hcl │ ├── init │ │ ├── duplicate_required_plugins │ │ │ └── packer.pkr.hcl │ │ ├── imports │ │ │ ├── build.pkr.hcl │ │ │ ├── sources.pkr.hcl │ │ │ └── variables.pkr.hcl │ │ ├── invalid_inexplicit_source.pkr.hcl │ │ ├── invalid_inexplicit_source_2.pkr.hcl │ │ └── invalid_short_source.pkr.hcl │ ├── sources │ │ ├── basic.pkr.hcl │ │ ├── duplicate.pkr.hcl │ │ ├── nonexistent.pkr.hcl │ │ ├── nonexistent_used.pkr.hcl │ │ ├── unnamed.pkr.hcl │ │ └── untyped.pkr.hcl │ ├── unknown │ │ └── block_type.pkr.hcl │ └── variables │ │ ├── basic.pkr.hcl │ │ ├── complicated │ │ ├── a.pkr.hcl │ │ ├── b.pkr.hcl │ │ ├── c.pkr.hcl │ │ └── d.pkr.hcl │ │ ├── duplicate_locals │ │ ├── one.pkr.hcl │ │ └── one_copy.pkr.hcl │ │ ├── duplicate_variable.pkr.hcl │ │ ├── duplicate_variables.pkr.hcl │ │ ├── empty.pkr.hcl │ │ ├── foo-string.variable.pkr.hcl │ │ ├── invalid_default.pkr.hcl │ │ ├── provisioner_variable_decoding.pkr.hcl │ │ ├── recursive_locals.pkr.hcl │ │ ├── set-foo-too-wee.hcl │ │ ├── unknown_key.pkr.hcl │ │ ├── unset_unused_string_variable.pkr.hcl │ │ ├── unset_used_string_variable.pkr.hcl │ │ └── validation │ │ ├── invalid_default.pkr.hcl │ │ ├── valid.pkr.hcl │ │ └── valid_map │ │ ├── definition.pkr.hcl │ │ └── invalid_value.auto.pkrvars.hcl ├── types.build.from.go ├── types.build.go ├── types.build.hcp_packer_registry.go ├── types.build.hcp_packer_registry_test.go ├── types.build.post-processor.go ├── types.build.provisioners.go ├── types.build.provisioners_test.go ├── types.build_test.go ├── types.datasource.go ├── types.datasource_test.go ├── types.hcl_post-processor.go ├── types.hcl_provisioner.go ├── types.hcl_ref.go ├── types.packer_config.go ├── types.packer_config_test.go ├── types.refstring.go ├── types.required_plugins.go ├── types.required_plugins_test.go ├── types.source.go ├── types.source_test.go ├── types.variables.go ├── types.variables_test.go ├── utils.go ├── version.go └── version_required.go ├── helper ├── wrappedreadline │ ├── wrappedreadline.go │ ├── wrappedreadline_solaris.go │ ├── wrappedreadline_unix.go │ └── wrappedreadline_windows.go └── wrappedstreams │ ├── streams.go │ ├── streams_other.go │ └── streams_windows.go ├── internal ├── dag │ ├── dag.go │ ├── dag_test.go │ ├── edge.go │ ├── edge_test.go │ ├── graph.go │ ├── graph_test.go │ ├── set.go │ ├── set_test.go │ ├── tarjan.go │ └── tarjan_test.go └── hcp │ ├── api │ ├── client.go │ ├── client_test.go │ ├── deprecated_client.go │ ├── deprecated_service.go │ ├── errors.go │ ├── errors_test.go │ ├── mock_service.go │ ├── service_bucket.go │ ├── service_build.go │ ├── service_channel.go │ └── service_version.go │ ├── env │ ├── env.go │ ├── env_test.go │ └── variables.go │ └── registry │ ├── artifact.go │ ├── deprecated_ds_config.go │ ├── ds_config.go │ ├── errors.go │ ├── hcl.go │ ├── hcl_test.go │ ├── hcp.go │ ├── json.go │ ├── metadata │ ├── cicd.go │ ├── os.go │ ├── os_test.go │ └── vcs.go │ ├── null_registry.go │ ├── registry.go │ ├── types.bucket.go │ ├── types.bucket_service_test.go │ ├── types.bucket_test.go │ ├── types.builds.go │ ├── types.metadata_store.go │ ├── types.version.go │ └── types.version_test.go ├── log.go ├── main.go ├── main_test.go ├── packer ├── build.go ├── build_test.go ├── builder_test.go ├── client_test.go ├── cmd_builder.go ├── cmd_builder_test.go ├── cmd_datasource.go ├── cmd_datasource_test.go ├── cmd_hook.go ├── cmd_hook_test.go ├── cmd_post_processor.go ├── cmd_post_processor_test.go ├── cmd_provisioner.go ├── cmd_provisioner_test.go ├── core.go ├── core_test.go ├── fixconfigmode_enumer.go ├── maps.go ├── packer_test.go ├── plugin-getter │ ├── checksum.go │ ├── docs.go │ ├── github │ │ ├── docs.go │ │ ├── getter.go │ │ └── getter_test.go │ ├── plugins.go │ ├── plugins_test.go │ ├── release │ │ ├── getter.go │ │ └── getter_test.go │ └── testdata │ │ ├── plugins │ │ └── github.com │ │ │ └── hashicorp │ │ │ ├── amazon │ │ │ ├── packer-plugin-amazon_v1.2.3_x5.0_darwin_amd64 │ │ │ ├── packer-plugin-amazon_v1.2.3_x5.0_darwin_amd64_SHA256SUM │ │ │ ├── packer-plugin-amazon_v1.2.3_x5.0_windows_amd64.exe │ │ │ ├── packer-plugin-amazon_v1.2.3_x5.0_windows_amd64.exe_SHA256SUM │ │ │ ├── packer-plugin-amazon_v1.2.3_x5.1_darwin_amd64 │ │ │ ├── packer-plugin-amazon_v1.2.3_x5.1_darwin_amd64_SHA256SUM │ │ │ ├── packer-plugin-amazon_v1.2.4_x5.0_darwin_amd64 │ │ │ ├── packer-plugin-amazon_v1.2.4_x5.0_darwin_amd64_SHA256SUM │ │ │ ├── packer-plugin-amazon_v1.2.4_x5.0_windows_amd64.exe │ │ │ ├── packer-plugin-amazon_v1.2.4_x5.0_windows_amd64.exe_SHA256SUM │ │ │ ├── packer-plugin-amazon_v1.2.5_x5.0_darwin_amd64 │ │ │ ├── packer-plugin-amazon_v1.2.5_x5.0_darwin_amd64_SHA256SUM │ │ │ ├── packer-plugin-amazon_v1.2.5_x5.0_windows_amd64.exe │ │ │ ├── packer-plugin-amazon_v1.2.5_x5.0_windows_amd64.exe_SHA256SUM │ │ │ ├── packer-plugin-amazon_v2.0.0_x6.0_darwin_amd64 │ │ │ └── packer-plugin-amazon_v2.0.0_x6.0_darwin_amd64_SHA256SUM │ │ │ └── google │ │ │ ├── packer-plugin-google_v4.5.6_x5.0_darwin_amd64 │ │ │ ├── packer-plugin-google_v4.5.6_x5.0_darwin_amd64_SHA256SUM │ │ │ ├── packer-plugin-google_v4.5.6_x5.0_windows_amd64.exe │ │ │ ├── packer-plugin-google_v4.5.6_x5.0_windows_amd64.exe_SHA256SUM │ │ │ ├── packer-plugin-google_v4.5.7_x5.0_darwin_amd64 │ │ │ ├── packer-plugin-google_v4.5.7_x5.0_darwin_amd64_SHA256SUM │ │ │ ├── packer-plugin-google_v4.5.7_x5.0_windows_amd64.exe │ │ │ ├── packer-plugin-google_v4.5.7_x5.0_windows_amd64.exe_SHA256SUM │ │ │ ├── packer-plugin-google_v4.5.8_x5.0_darwin_amd64 │ │ │ ├── packer-plugin-google_v4.5.8_x5.0_darwin_amd64_SHA256SUM │ │ │ ├── packer-plugin-google_v4.5.8_x5.0_windows_amd64.exe │ │ │ └── packer-plugin-google_v4.5.8_x5.0_windows_amd64.exe_SHA256SUM │ │ ├── plugins_2 │ │ └── github.com │ │ │ ├── hashicorp copy │ │ │ ├── amazon │ │ │ │ ├── packer-plugin-amazon_v1.2.6_x5.1_darwin_amd64 │ │ │ │ └── packer-plugin-amazon_v1.2.6_x5.1_darwin_amd64_SHA256SUM │ │ │ └── google │ │ │ │ ├── packer-plugin-google_v4.5.6_x5.0_darwin_amd64 │ │ │ │ ├── packer-plugin-google_v4.5.6_x5.0_darwin_amd64_SHA256SUM │ │ │ │ ├── packer-plugin-google_v4.5.6_x5.0_windows_amd64.exe │ │ │ │ ├── packer-plugin-google_v4.5.6_x5.0_windows_amd64.exe_SHA256SUM │ │ │ │ ├── packer-plugin-google_v4.5.9_x5.0_darwin_amd64 │ │ │ │ ├── packer-plugin-google_v4.5.9_x5.0_darwin_amd64_SHA256SUM │ │ │ │ ├── packer-plugin-google_v4.5.9_x5.0_windows_amd64.exe │ │ │ │ └── packer-plugin-google_v4.5.9_x5.0_windows_amd64.exe_SHA256SUM │ │ │ └── hashicorp │ │ │ ├── amazon │ │ │ ├── packer-plugin-amazon_v1.2.6_x5.1_darwin_amd64 │ │ │ └── packer-plugin-amazon_v1.2.6_x5.1_darwin_amd64_SHA256SUM │ │ │ └── google │ │ │ ├── packer-plugin-google_v4.5.6_x5.0_darwin_amd64 │ │ │ ├── packer-plugin-google_v4.5.6_x5.0_darwin_amd64_SHA256SUM │ │ │ ├── packer-plugin-google_v4.5.6_x5.0_windows_amd64.exe │ │ │ ├── packer-plugin-google_v4.5.6_x5.0_windows_amd64.exe_SHA256SUM │ │ │ ├── packer-plugin-google_v4.5.9_x5.0_darwin_amd64 │ │ │ ├── packer-plugin-google_v4.5.9_x5.0_darwin_amd64_SHA256SUM │ │ │ ├── packer-plugin-google_v4.5.9_x5.0_windows_amd64.exe │ │ │ └── packer-plugin-google_v4.5.9_x5.0_windows_amd64.exe_SHA256SUM │ │ ├── plugins_3 │ │ └── github.com │ │ │ └── hashicorp │ │ │ ├── alazon │ │ │ ├── packer-plugin-alazon_v1.2.5_x5.0_linux_amd64 │ │ │ └── packer-plugin-alazon_v1.2.5_x5.0_linux_amd64_SHA256SUM │ │ │ └── amazon │ │ │ ├── packer-plugin-amazon_v1.2.5_x5.0_linux_amd64 │ │ │ └── packer-plugin-amazon_v1.2.5_x5.0_linux_amd64_SHA256SUM │ │ └── wrong_checksums │ │ └── github.com │ │ └── hashicorp │ │ └── amazon │ │ ├── packer-plugin-amazon_v1.2.3_x5.0_darwin_amd64 │ │ ├── packer-plugin-amazon_v1.2.3_x5.0_darwin_amd64_SHA256SUM │ │ └── packer-plugin-amazon_v1.2.6_x5.1_darwin_amd64 ├── plugin.go ├── plugin_client.go ├── plugin_discover_test.go ├── plugin_folders.go ├── plugin_test.go ├── post_processor_mock.go ├── post_processor_mock.hcl2spec.go ├── progressbar.go ├── progressbar_solaris.go ├── progressbar_test.go ├── provisioner.go ├── provisioner_test.go ├── provisioner_timeout.go ├── run_interfaces.go ├── telemetry.go ├── telemetry_test.go ├── test-fixtures │ ├── build-basic-interpolated-required.json │ ├── build-basic-interpolated.json │ ├── build-basic.json │ ├── build-env.json │ ├── build-ignore-template-variable.json │ ├── build-interpolated-name.json │ ├── build-names-basic.json │ ├── build-names-func.json │ ├── build-pp.json │ ├── build-prov-override.json │ ├── build-prov-retry.json │ ├── build-prov-skip-include.json │ ├── build-prov-skip.json │ ├── build-prov.json │ ├── build-split-func.json │ ├── build-template-path.json │ ├── build-var-build-name.json │ ├── build-var-build-type.json │ ├── build-var-file-interpolate.json │ ├── build-var-file-interpolate2.json │ ├── build-var-packer-version.json │ ├── build-variables-interpolate.json │ ├── build-variables-interpolate2.json │ ├── complex-recursed-env-user-var-file.json │ ├── push-vars.json │ ├── sensitive-variables.json │ ├── validate-dup-builder.json │ ├── validate-min-version-high.json │ ├── validate-min-version.json │ └── validate-req-variable.json ├── testing.go ├── ui.go └── ui_test.go ├── packer_test ├── common │ ├── base.go │ ├── check │ │ ├── file_gadgets.go │ │ ├── gadgets.go │ │ └── pipe_checker.go │ ├── commands.go │ ├── fs.go │ ├── plugin.go │ ├── plugin_tester │ │ ├── LICENSE │ │ ├── README.md │ │ ├── builder │ │ │ └── dynamic │ │ │ │ ├── artifact.go │ │ │ │ ├── builder.go │ │ │ │ ├── builder.hcl2spec.go │ │ │ │ ├── builder_acc_test.go │ │ │ │ ├── step_say_config.go │ │ │ │ └── test-fixtures │ │ │ │ └── template.pkr.hcl │ │ ├── datasource │ │ │ ├── dynamic │ │ │ │ ├── data.go │ │ │ │ ├── data.hcl2spec.go │ │ │ │ ├── data_acc_test.go │ │ │ │ └── test-fixtures │ │ │ │ │ └── template.pkr.hcl │ │ │ ├── parrot │ │ │ │ ├── data.go │ │ │ │ └── data.hcl2spec.go │ │ │ └── sleeper │ │ │ │ ├── data.go │ │ │ │ └── data.hcl2spec.go │ │ ├── docs │ │ │ ├── README.md │ │ │ ├── builders │ │ │ │ └── builder-name.mdx │ │ │ ├── datasources │ │ │ │ └── datasource-name.mdx │ │ │ ├── post-processors │ │ │ │ └── postprocessor-name.mdx │ │ │ └── provisioners │ │ │ │ └── provisioner-name.mdx │ │ ├── example │ │ │ ├── README.md │ │ │ ├── build.pkr.hcl │ │ │ ├── data.pkr.hcl │ │ │ └── variables.pkr.hcl │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ ├── post-processor │ │ │ └── dynamic │ │ │ │ ├── post-processor.go │ │ │ │ ├── post-processor.hcl2spec.go │ │ │ │ ├── post-processor_acc_test.go │ │ │ │ └── test-fixtures │ │ │ │ └── template.pkr.hcl │ │ ├── provisioner │ │ │ └── dynamic │ │ │ │ ├── provisioner.go │ │ │ │ ├── provisioner.hcl2spec.go │ │ │ │ ├── provisioner_acc_test.go │ │ │ │ └── test-fixtures │ │ │ │ └── template.pkr.hcl │ │ └── version │ │ │ └── version.go │ └── suite.go ├── core_tests │ ├── local_eval_test.go │ ├── suite_test.go │ └── templates │ │ ├── locals_duplicate.pkr.hcl │ │ └── locals_no_order.pkr.hcl ├── dag_tests │ ├── malformed_dep_test.go │ ├── mix_data_locals_test.go │ ├── suite_test.go │ └── templates │ │ ├── malformed_data_dep.pkr.hcl │ │ ├── malformed_local_dep.pkr.hcl │ │ └── mixed_data_local.pkr.hcl ├── plugin_tests │ ├── gob_pb_test.go │ ├── gob_test_suite.go │ ├── init_test.go │ ├── install_test.go │ ├── loading_test.go │ ├── plugins_remove_test.go │ ├── sample_config.json │ ├── suite_test.go │ └── templates │ │ ├── init │ │ ├── hashicups.pkr.hcl │ │ ├── mixed_versions.pkr.hcl │ │ └── non_gh.pkr.hcl │ │ ├── internal_only.pkr.hcl │ │ ├── pin_1.0.9.pkr.hcl │ │ ├── pre-release_constraint.pkr.hcl │ │ ├── simple.json │ │ ├── simple.pkr.hcl │ │ ├── test_both_plugins.pkr.hcl │ │ ├── test_one_pinned_plugin.pkr.hcl │ │ └── test_one_plugin.pkr.hcl └── provisioner_tests │ ├── hcp-sbom │ ├── provisioner_test.go │ ├── suite_test.go │ └── templates │ │ ├── dest_is_dir.pkr.hcl │ │ ├── dest_is_dir_with_trailing_slash.pkr.hcl │ │ ├── dest_is_file_no_interm_dirs.pkr.hcl │ │ ├── dest_is_file_with_interm_dirs.pkr.hcl │ │ ├── source_is_dir.pkr.hcl │ │ └── source_not_existing.pkr.hcl │ └── shell │ ├── provisioner_test.go │ ├── suite_test.go │ └── templates │ ├── empty_inline_list.pkr.hcl │ ├── no_shebang_in_script.pkr.hcl │ ├── no_shebang_inline_but_as_option.pkr.hcl │ ├── shebang_as_option.pkr.hcl │ ├── shebang_as_option_invalid.pkr.hcl │ └── shebang_in_inline.pkr.hcl ├── panic.go ├── post-processor ├── artifice │ ├── artifact.go │ ├── post-processor.go │ ├── post-processor.hcl2spec.go │ └── version │ │ └── version.go ├── checksum │ ├── LICENSE │ ├── artifact.go │ ├── post-processor.go │ ├── post-processor.hcl2spec.go │ ├── post-processor_test.go │ └── version │ │ └── version.go ├── compress │ ├── LICENSE │ ├── artifact.go │ ├── artifact_test.go │ ├── benchmark.go │ ├── notes.txt │ ├── post-processor.go │ ├── post-processor.hcl2spec.go │ ├── post-processor_test.go │ ├── tar_fix.go │ ├── tar_fix_go110.go │ └── version │ │ └── version.go ├── manifest │ ├── artifact.go │ ├── post-processor.go │ ├── post-processor.hcl2spec.go │ └── version │ │ └── version.go └── shell-local │ ├── post-processor.go │ ├── post-processor_test.go │ └── version │ └── version.go ├── provisioner ├── breakpoint │ ├── provisioner.go │ ├── provisioner.hcl2spec.go │ └── version │ │ └── version.go ├── file │ ├── provisioner.go │ ├── provisioner.hcl2spec.go │ ├── provisioner_test.go │ └── version │ │ └── version.go ├── hcp-sbom │ ├── provisioner.go │ ├── provisioner.hcl2spec.go │ ├── provisioner_test.go │ ├── validate.go │ └── version │ │ └── version.go ├── powershell │ ├── execution_policy.go │ ├── execution_policy_test.go │ ├── executionpolicy_enumer.go │ ├── provisioner.go │ ├── provisioner.hcl2spec.go │ ├── provisioner_acc_test.go │ ├── provisioner_test.go │ ├── test-fixtures │ │ ├── powershell-exit_codes-provisioner.txt │ │ ├── powershell-inline-provisioner.txt │ │ ├── powershell-provisioner-cleanup.txt │ │ ├── powershell-script-provisioner.txt │ │ └── scripts │ │ │ ├── bootstrap_win.txt │ │ │ ├── sample_script.ps1 │ │ │ └── set_version_latest.ps1 │ └── version │ │ └── version.go ├── shell-local │ ├── provisioner.go │ ├── provisioner_acc_test.go │ ├── provisioner_test.go │ ├── test-fixtures │ │ ├── script.sh │ │ └── shell-local-provisioner.txt │ └── version │ │ └── version.go ├── shell │ ├── provisioner.go │ ├── provisioner.hcl2spec.go │ ├── provisioner_acc_test.go │ ├── provisioner_test.go │ ├── test-fixtures │ │ └── shell-provisioner.txt │ ├── unix_reader.go │ ├── unix_reader_test.go │ └── version │ │ └── version.go ├── sleep │ ├── provisioner.go │ ├── provisioner.hcl2spec.go │ ├── provisioner_test.go │ └── version │ │ └── version.go ├── windows-restart │ ├── provisioner.go │ ├── provisioner.hcl2spec.go │ ├── provisioner_test.go │ └── version │ │ └── version.go └── windows-shell │ ├── provisioner.go │ ├── provisioner.hcl2spec.go │ ├── provisioner_test.go │ └── version │ └── version.go ├── scripts ├── build.ps1 ├── build.sh ├── codesign_example.sh ├── dist.sh ├── generate-plugins.go ├── off_gopath.sh ├── prepare_changelog.sh ├── sign.sh ├── sort-md-list.py ├── vagrant-freebsd-priv-config.sh ├── vagrant-freebsd-unpriv-bootstrap.sh ├── vagrant-linux-priv-config.sh ├── vagrant-linux-priv-go.sh └── vagrant-linux-unpriv-bootstrap.sh ├── tty.go ├── tty_solaris.go ├── version ├── VERSION └── version.go └── website ├── .editorconfig ├── .env ├── .env.production ├── .eslintrc.js ├── .gitignore ├── .husky └── pre-commit ├── .nvmrc ├── .stylelintrc.js ├── Dockerfile ├── LICENSE.md ├── Makefile ├── README.md ├── content ├── community-plugins.mdx ├── docs │ ├── builders │ │ ├── community-supported.mdx │ │ ├── file.mdx │ │ ├── index.mdx │ │ └── null.mdx │ ├── commands │ │ ├── build.mdx │ │ ├── console.mdx │ │ ├── fix.mdx │ │ ├── fmt.mdx │ │ ├── hcl2_upgrade.mdx │ │ ├── index.mdx │ │ ├── init.mdx │ │ ├── inspect.mdx │ │ ├── plugins │ │ │ ├── index.mdx │ │ │ ├── install.mdx │ │ │ ├── installed.mdx │ │ │ ├── remove.mdx │ │ │ └── required.mdx │ │ └── validate.mdx │ ├── communicators │ │ ├── index.mdx │ │ ├── ssh.mdx │ │ └── winrm.mdx │ ├── community-tools.mdx │ ├── configure.mdx │ ├── datasources │ │ ├── hcp │ │ │ ├── hcp-packer-artifact.mdx │ │ │ ├── hcp-packer-image.mdx │ │ │ ├── hcp-packer-iteration.mdx │ │ │ ├── hcp-packer-version.mdx │ │ │ └── index.mdx │ │ ├── http.mdx │ │ └── index.mdx │ ├── debugging.mdx │ ├── hcp │ │ └── index.mdx │ ├── index.mdx │ ├── intro │ │ ├── index.mdx │ │ ├── use-cases.mdx │ │ └── why.mdx │ ├── partnerships.mdx │ ├── plugins │ │ ├── creation │ │ │ ├── custom-builders.mdx │ │ │ ├── custom-datasources.mdx │ │ │ ├── custom-post-processors.mdx │ │ │ ├── custom-provisioners.mdx │ │ │ ├── hcp-support.mdx │ │ │ ├── index.mdx │ │ │ └── plugin-load-spec.mdx │ │ ├── index.mdx │ │ └── install.mdx │ ├── post-processors │ │ ├── artifice.mdx │ │ ├── checksum.mdx │ │ ├── community-supported.mdx │ │ ├── compress.mdx │ │ ├── index.mdx │ │ ├── manifest.mdx │ │ └── shell-local.mdx │ ├── provisioners │ │ ├── breakpoint.mdx │ │ ├── community-supported.mdx │ │ ├── file.mdx │ │ ├── hcp-sbom.mdx │ │ ├── index.mdx │ │ ├── powershell.mdx │ │ ├── shell-local.mdx │ │ ├── shell.mdx │ │ ├── windows-restart.mdx │ │ └── windows-shell.mdx │ ├── release-notes │ │ ├── v1_11.mdx │ │ ├── v1_12.mdx │ │ └── v1_13.mdx │ ├── templates │ │ ├── hcl_templates │ │ │ ├── blocks │ │ │ │ ├── build │ │ │ │ │ ├── hcp_packer_registry.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── post-processor.mdx │ │ │ │ │ ├── post-processors.mdx │ │ │ │ │ ├── provisioner.mdx │ │ │ │ │ └── source.mdx │ │ │ │ ├── data.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── locals.mdx │ │ │ │ ├── packer.mdx │ │ │ │ ├── source.mdx │ │ │ │ └── variable.mdx │ │ │ ├── contextual-variables.mdx │ │ │ ├── datasources.mdx │ │ │ ├── expressions.mdx │ │ │ ├── functions │ │ │ │ ├── collection │ │ │ │ │ ├── alltrue.mdx │ │ │ │ │ ├── anytrue.mdx │ │ │ │ │ ├── chunklist.mdx │ │ │ │ │ ├── coalesce.mdx │ │ │ │ │ ├── coalescelist.mdx │ │ │ │ │ ├── compact.mdx │ │ │ │ │ ├── concat.mdx │ │ │ │ │ ├── contains.mdx │ │ │ │ │ ├── distinct.mdx │ │ │ │ │ ├── element.mdx │ │ │ │ │ ├── flatten.mdx │ │ │ │ │ ├── index-fn.mdx │ │ │ │ │ ├── keys.mdx │ │ │ │ │ ├── length.mdx │ │ │ │ │ ├── lookup.mdx │ │ │ │ │ ├── merge.mdx │ │ │ │ │ ├── range.mdx │ │ │ │ │ ├── reverse.mdx │ │ │ │ │ ├── setintersection.mdx │ │ │ │ │ ├── setproduct.mdx │ │ │ │ │ ├── setunion.mdx │ │ │ │ │ ├── slice.mdx │ │ │ │ │ ├── sort.mdx │ │ │ │ │ ├── values.mdx │ │ │ │ │ └── zipmap.mdx │ │ │ │ ├── contextual │ │ │ │ │ ├── aws_secretsmanager.mdx │ │ │ │ │ ├── consul.mdx │ │ │ │ │ ├── env.mdx │ │ │ │ │ └── vault.mdx │ │ │ │ ├── conversion │ │ │ │ │ ├── can.mdx │ │ │ │ │ ├── convert.mdx │ │ │ │ │ └── try.mdx │ │ │ │ ├── crypto │ │ │ │ │ ├── bcrypt.mdx │ │ │ │ │ ├── md5.mdx │ │ │ │ │ ├── rsadecrypt.mdx │ │ │ │ │ ├── sha1.mdx │ │ │ │ │ ├── sha256.mdx │ │ │ │ │ └── sha512.mdx │ │ │ │ ├── datetime │ │ │ │ │ ├── formatdate.mdx │ │ │ │ │ ├── legacy_isotime.mdx │ │ │ │ │ ├── legacy_strftime.mdx │ │ │ │ │ ├── timeadd.mdx │ │ │ │ │ └── timestamp.mdx │ │ │ │ ├── encoding │ │ │ │ │ ├── base64decode.mdx │ │ │ │ │ ├── base64encode.mdx │ │ │ │ │ ├── base64gzip.mdx │ │ │ │ │ ├── csvdecode.mdx │ │ │ │ │ ├── jsondecode.mdx │ │ │ │ │ ├── jsonencode.mdx │ │ │ │ │ ├── textdecodebase64.mdx │ │ │ │ │ ├── textencodebase64.mdx │ │ │ │ │ ├── urlencode.mdx │ │ │ │ │ ├── yamldecode.mdx │ │ │ │ │ └── yamlencode.mdx │ │ │ │ ├── file │ │ │ │ │ ├── abspath.mdx │ │ │ │ │ ├── basename.mdx │ │ │ │ │ ├── dirname.mdx │ │ │ │ │ ├── file.mdx │ │ │ │ │ ├── filebase64.mdx │ │ │ │ │ ├── fileexists.mdx │ │ │ │ │ ├── fileset.mdx │ │ │ │ │ ├── pathexpand.mdx │ │ │ │ │ └── templatefile.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── ipnet │ │ │ │ │ ├── cidrhost.mdx │ │ │ │ │ ├── cidrnetmask.mdx │ │ │ │ │ ├── cidrsubnet.mdx │ │ │ │ │ └── cidrsubnets.mdx │ │ │ │ ├── numeric │ │ │ │ │ ├── abs.mdx │ │ │ │ │ ├── ceil.mdx │ │ │ │ │ ├── floor.mdx │ │ │ │ │ ├── log.mdx │ │ │ │ │ ├── max.mdx │ │ │ │ │ ├── min.mdx │ │ │ │ │ ├── parseint.mdx │ │ │ │ │ ├── pow.mdx │ │ │ │ │ ├── signum.mdx │ │ │ │ │ └── sum.mdx │ │ │ │ ├── string │ │ │ │ │ ├── chomp.mdx │ │ │ │ │ ├── endswith.mdx │ │ │ │ │ ├── format.mdx │ │ │ │ │ ├── formatlist.mdx │ │ │ │ │ ├── indent.mdx │ │ │ │ │ ├── join.mdx │ │ │ │ │ ├── lower.mdx │ │ │ │ │ ├── regex.mdx │ │ │ │ │ ├── regex_replace.mdx │ │ │ │ │ ├── regexall.mdx │ │ │ │ │ ├── replace.mdx │ │ │ │ │ ├── split.mdx │ │ │ │ │ ├── startswith.mdx │ │ │ │ │ ├── strcontains.mdx │ │ │ │ │ ├── strrev.mdx │ │ │ │ │ ├── substr.mdx │ │ │ │ │ ├── title.mdx │ │ │ │ │ ├── trim.mdx │ │ │ │ │ ├── trimprefix.mdx │ │ │ │ │ ├── trimspace.mdx │ │ │ │ │ ├── trimsuffix.mdx │ │ │ │ │ └── upper.mdx │ │ │ │ └── uuid │ │ │ │ │ ├── uuidv4.mdx │ │ │ │ │ └── uuidv5.mdx │ │ │ ├── index.mdx │ │ │ ├── locals.mdx │ │ │ ├── onlyexcept.mdx │ │ │ ├── path-variables.mdx │ │ │ ├── syntax-json.mdx │ │ │ ├── syntax.mdx │ │ │ └── variables.mdx │ │ ├── index.mdx │ │ ├── json_to_hcl.mdx │ │ └── legacy_json_templates │ │ │ ├── builders.mdx │ │ │ ├── communicator.mdx │ │ │ ├── engine.mdx │ │ │ ├── index.mdx │ │ │ ├── post-processors.mdx │ │ │ ├── provisioners.mdx │ │ │ └── user-variables.mdx │ ├── terminology.mdx │ └── upgrade │ │ ├── v1_11.mdx │ │ ├── v1_12.mdx │ │ └── v1_13.mdx ├── guides │ ├── 1.7-plugin-upgrade.mdx │ ├── 1.7-template-upgrade.mdx │ ├── automatic-operating-system-installs │ │ ├── autounattend_windows.mdx │ │ ├── index.mdx │ │ └── preseed_ubuntu.mdx │ ├── hcl │ │ ├── component-object-spec.mdx │ │ ├── index.mdx │ │ └── variables.mdx │ ├── index.mdx │ └── packer-on-cicd │ │ ├── build-image-in-cicd.mdx │ │ ├── build-virtualbox-image.mdx │ │ ├── index.mdx │ │ ├── pipelineing-builds.mdx │ │ ├── trigger-tfe.mdx │ │ └── upload-images-to-artifact.mdx ├── partials │ ├── commands │ │ ├── except.mdx │ │ └── only.mdx │ ├── datasource │ │ ├── hcp-packer-artifact │ │ │ ├── Config-not-required.mdx │ │ │ ├── Config-required.mdx │ │ │ └── DatasourceOutput.mdx │ │ ├── hcp-packer-image │ │ │ ├── Config-not-required.mdx │ │ │ ├── Config-required.mdx │ │ │ └── DatasourceOutput.mdx │ │ ├── hcp-packer-iteration │ │ │ ├── Config-required.mdx │ │ │ └── DatasourceOutput.mdx │ │ ├── hcp-packer-version │ │ │ ├── Config-required.mdx │ │ │ └── DatasourceOutput.mdx │ │ ├── http │ │ │ ├── Config-not-required.mdx │ │ │ ├── Config-required.mdx │ │ │ └── DatasourceOutput.mdx │ │ └── null │ │ │ ├── Config-required.mdx │ │ │ ├── Config.mdx │ │ │ └── DatasourceOutput.mdx │ ├── datasources │ │ └── local-dependency-limitation.mdx │ ├── from-1.5 │ │ ├── beta-hcl2-note.mdx │ │ ├── builds │ │ │ └── example-block.mdx │ │ ├── contextual-source-variables.mdx │ │ ├── datasources │ │ │ └── example-block.mdx │ │ ├── legacy-json-warning.mdx │ │ ├── locals │ │ │ └── example-block.mdx │ │ ├── sources │ │ │ └── example-block.mdx │ │ └── variables │ │ │ ├── assignment.mdx │ │ │ ├── custom-validation.mdx │ │ │ ├── foo-block.mdx │ │ │ ├── foo-pkrvar.mdx │ │ │ ├── must-be-set.mdx │ │ │ └── sensitive.mdx │ ├── guides │ │ └── hcl2-beta-note.mdx │ ├── helper │ │ └── communicator │ │ │ ├── SSH-Agent-Auth-not-required.mdx │ │ │ ├── SSH-Key-Pair-Name-not-required.mdx │ │ │ ├── SSH-Private-Key-File-not-required.mdx │ │ │ └── SSH-Temporary-Key-Pair-not-required.mdx │ ├── packer-plugin-sdk │ │ ├── bootcommand │ │ │ ├── BootConfig-not-required.mdx │ │ │ ├── BootConfig.mdx │ │ │ ├── VNCConfig-not-required.mdx │ │ │ └── VNCConfig.mdx │ │ ├── communicator │ │ │ ├── Config-not-required.mdx │ │ │ ├── Config.mdx │ │ │ ├── SSH-Agent-Auth-not-required.mdx │ │ │ ├── SSH-Key-Pair-Name-not-required.mdx │ │ │ ├── SSH-Private-Key-File-not-required.mdx │ │ │ ├── SSH-Temporary-Key-Pair-not-required.mdx │ │ │ ├── SSH-not-required.mdx │ │ │ ├── SSH.mdx │ │ │ ├── SSHInterface-not-required.mdx │ │ │ ├── SSHInterface.mdx │ │ │ ├── SSHTemporaryKeyPair-not-required.mdx │ │ │ ├── SSHTemporaryKeyPair.mdx │ │ │ ├── WinRM-not-required.mdx │ │ │ └── WinRM.mdx │ │ ├── multistep │ │ │ └── commonsteps │ │ │ │ ├── CDConfig-not-required.mdx │ │ │ │ ├── CDConfig.mdx │ │ │ │ ├── FloppyConfig-not-required.mdx │ │ │ │ ├── FloppyConfig.mdx │ │ │ │ ├── HTTPConfig-not-required.mdx │ │ │ │ ├── HTTPConfig.mdx │ │ │ │ ├── ISOConfig-not-required.mdx │ │ │ │ ├── ISOConfig-required.mdx │ │ │ │ └── ISOConfig.mdx │ │ ├── provisioners │ │ │ ├── common-config.mdx │ │ │ ├── shell-config.mdx │ │ │ └── unmaintained-plugin.mdx │ │ └── shutdowncommand │ │ │ ├── ShutdownConfig-not-required.mdx │ │ │ └── ShutdownConfig.mdx │ ├── path │ │ └── separator-note.mdx │ ├── plugins │ │ ├── plugin-location.mdx │ │ └── plugin-tiers-and-namespaces.mdx │ ├── post-processor │ │ └── manifest │ │ │ └── Config-not-required.mdx │ ├── post-processors │ │ └── community_post-processors.mdx │ ├── provisioner │ │ ├── file │ │ │ ├── Config-not-required.mdx │ │ │ └── Config-required.mdx │ │ └── hcp-sbom │ │ │ ├── Config-not-required.mdx │ │ │ ├── Config-required.mdx │ │ │ └── PackerSBOM.mdx │ └── provisioners │ │ ├── common-config.mdx │ │ ├── shell-config.mdx │ │ └── unmaintained-plugin.mdx ├── plugins │ └── index.mdx └── security.mdx ├── data ├── docs-nav-data.json ├── guides-nav-data.json ├── plugins-manifest.json └── plugins-nav-data.json ├── package-lock.json ├── package.json ├── prettier.config.js ├── public ├── favicon.ico ├── files │ └── press-kit.zip ├── ie-warning.js ├── img │ ├── branded-cta │ │ └── cta-right.svg │ ├── docs │ │ ├── atlas-workflow.png │ │ ├── packer-ecosystem-diagram.png │ │ └── packer-integration-steps-diagram.png │ ├── favicons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── mstile-150x150.png │ │ └── safari-pinned-tab.svg │ ├── guides │ │ ├── teamcity_build_configuration.png │ │ ├── teamcity_build_log.png │ │ ├── teamcity_build_log_complete.png │ │ ├── teamcity_create_project_from_url-1.png │ │ └── teamcity_create_project_from_url-2.png │ ├── hcp-callout.svg │ ├── homepage-hero │ │ └── hero-right.svg │ ├── integrations-text-split │ │ └── integrations.png │ ├── integrations │ │ ├── aws.svg │ │ ├── azure.svg │ │ ├── digitalocean.svg │ │ ├── docker.svg │ │ ├── google-cloud.svg │ │ └── vmware.svg │ ├── logo-hashicorp.svg │ ├── logo-packer-padded.svg │ ├── logo-text.svg │ ├── og-image.png │ ├── packer-signed-urls.png │ └── product-features-list │ │ ├── continuous-delivery.svg │ │ ├── demo-creation.svg │ │ ├── deployment.svg │ │ ├── portability.svg │ │ ├── prod-parity.svg │ │ └── stability.svg └── robots.txt ├── redirects.js ├── scripts ├── should-build.sh ├── tsconfig.json ├── website-build.sh └── website-start.sh └── vercel.json /.copywrite.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.copywrite.hcl -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/ISSUE_TEMPLATE/feature_requests.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/plugin_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/ISSUE_TEMPLATE/plugin_integration.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ssh_or_winrm_times_out.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/ISSUE_TEMPLATE/ssh_or_winrm_times_out.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler-issue-triage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/labeler-issue-triage.yml -------------------------------------------------------------------------------- /.github/workflows/acceptance-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/workflows/acceptance-test.yml -------------------------------------------------------------------------------- /.github/workflows/auto-close-stale-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/workflows/auto-close-stale-issues.yml -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/create-release-branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/workflows/create-release-branch.yml -------------------------------------------------------------------------------- /.github/workflows/go-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/workflows/go-test.yml -------------------------------------------------------------------------------- /.github/workflows/go-validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/workflows/go-validate.yml -------------------------------------------------------------------------------- /.github/workflows/issue-comment-created.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/workflows/issue-comment-created.yml -------------------------------------------------------------------------------- /.github/workflows/issue-migrator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/workflows/issue-migrator.yml -------------------------------------------------------------------------------- /.github/workflows/issues-opened.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/workflows/issues-opened.yml -------------------------------------------------------------------------------- /.github/workflows/jira.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/workflows/jira.yml -------------------------------------------------------------------------------- /.github/workflows/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/workflows/lock.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-release-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/workflows/nightly-release-readme.md -------------------------------------------------------------------------------- /.github/workflows/nightly-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.github/workflows/nightly-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.gitignore -------------------------------------------------------------------------------- /.go-version: -------------------------------------------------------------------------------- 1 | 1.23.2 2 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.release/ci.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.release/ci.hcl -------------------------------------------------------------------------------- /.release/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.release/docker/README.md -------------------------------------------------------------------------------- /.release/packer-artifacts.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.release/packer-artifacts.hcl -------------------------------------------------------------------------------- /.release/release-metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.release/release-metadata.hcl -------------------------------------------------------------------------------- /.release/security-scan.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/.release/security-scan.hcl -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/Vagrantfile -------------------------------------------------------------------------------- /acctest/plugin/component_acc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/acctest/plugin/component_acc_test.go -------------------------------------------------------------------------------- /acctest/plugin/plugin_acc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/acctest/plugin/plugin_acc_test.go -------------------------------------------------------------------------------- /acctest/plugin/test-fixtures/basic-amazon-ebs.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/acctest/plugin/test-fixtures/basic-amazon-ebs.pkr.hcl -------------------------------------------------------------------------------- /acctest/testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/acctest/testing.go -------------------------------------------------------------------------------- /acctest/testing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/acctest/testing_test.go -------------------------------------------------------------------------------- /background_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/background_check.go -------------------------------------------------------------------------------- /background_check_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/background_check_openbsd.go -------------------------------------------------------------------------------- /checkpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/checkpoint.go -------------------------------------------------------------------------------- /cmd/generate-fixer-deprecations/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/cmd/generate-fixer-deprecations/main.go -------------------------------------------------------------------------------- /cmd/ssh-keygen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/cmd/ssh-keygen/main.go -------------------------------------------------------------------------------- /command/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/build.go -------------------------------------------------------------------------------- /command/build_cancellation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/build_cancellation_test.go -------------------------------------------------------------------------------- /command/build_cleanup_script_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/build_cleanup_script_test.go -------------------------------------------------------------------------------- /command/build_parallel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/build_parallel_test.go -------------------------------------------------------------------------------- /command/build_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/build_test.go -------------------------------------------------------------------------------- /command/build_timeout_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/build_timeout_test.go -------------------------------------------------------------------------------- /command/build_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/build_windows_test.go -------------------------------------------------------------------------------- /command/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/cli.go -------------------------------------------------------------------------------- /command/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/command_test.go -------------------------------------------------------------------------------- /command/configtype_enumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/configtype_enumer.go -------------------------------------------------------------------------------- /command/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/console.go -------------------------------------------------------------------------------- /command/console_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/console_test.go -------------------------------------------------------------------------------- /command/enumflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/enumflag/flag.go -------------------------------------------------------------------------------- /command/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/exec_test.go -------------------------------------------------------------------------------- /command/execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/execute.go -------------------------------------------------------------------------------- /command/fix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/fix.go -------------------------------------------------------------------------------- /command/fix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/fix_test.go -------------------------------------------------------------------------------- /command/flag-kv/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/flag-kv/flag.go -------------------------------------------------------------------------------- /command/flag-kv/flag_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/flag-kv/flag_json.go -------------------------------------------------------------------------------- /command/flag-kv/flag_json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/flag-kv/flag_json_test.go -------------------------------------------------------------------------------- /command/flag-kv/flag_strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/flag-kv/flag_strings.go -------------------------------------------------------------------------------- /command/flag-kv/flag_strings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/flag-kv/flag_strings_test.go -------------------------------------------------------------------------------- /command/flag-kv/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/flag-kv/flag_test.go -------------------------------------------------------------------------------- /command/flag-kv/test-fixtures/basic.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /command/flag-slice/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/flag-slice/flag.go -------------------------------------------------------------------------------- /command/flag-slice/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/flag-slice/flag_test.go -------------------------------------------------------------------------------- /command/fmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/fmt.go -------------------------------------------------------------------------------- /command/fmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/fmt_test.go -------------------------------------------------------------------------------- /command/hcl2_upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/hcl2_upgrade.go -------------------------------------------------------------------------------- /command/hcl2_upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/hcl2_upgrade_test.go -------------------------------------------------------------------------------- /command/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/init.go -------------------------------------------------------------------------------- /command/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/init_test.go -------------------------------------------------------------------------------- /command/inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/inspect.go -------------------------------------------------------------------------------- /command/inspect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/inspect_test.go -------------------------------------------------------------------------------- /command/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/meta.go -------------------------------------------------------------------------------- /command/plugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/plugins.go -------------------------------------------------------------------------------- /command/plugins_install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/plugins_install.go -------------------------------------------------------------------------------- /command/plugins_install_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/plugins_install_test.go -------------------------------------------------------------------------------- /command/plugins_installed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/plugins_installed.go -------------------------------------------------------------------------------- /command/plugins_remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/plugins_remove.go -------------------------------------------------------------------------------- /command/plugins_required.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/plugins_required.go -------------------------------------------------------------------------------- /command/signal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/signal.go -------------------------------------------------------------------------------- /command/test-fixtures/build-name-and-type/all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/build-name-and-type/all.json -------------------------------------------------------------------------------- /command/test-fixtures/build-name-and-type/all.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/build-name-and-type/all.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/build-only/not-found.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/build-only/not-found.json -------------------------------------------------------------------------------- /command/test-fixtures/build-only/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/build-only/template.json -------------------------------------------------------------------------------- /command/test-fixtures/build-only/template.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/build-only/template.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/build-only/template.pkr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/build-only/template.pkr.json -------------------------------------------------------------------------------- /command/test-fixtures/cleanup-script/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/cleanup-script/template.json -------------------------------------------------------------------------------- /command/test-fixtures/fix-invalid/template.json: -------------------------------------------------------------------------------- 1 | { 2 | "hello": "world" 3 | } 4 | -------------------------------------------------------------------------------- /command/test-fixtures/fix/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/fix/template.json -------------------------------------------------------------------------------- /command/test-fixtures/fmt/formatted.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/fmt/formatted.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/fmt/unformatted.auto.pkrvars.hcl: -------------------------------------------------------------------------------- 1 | region ="us-west-2" 2 | -------------------------------------------------------------------------------- /command/test-fixtures/fmt/unformatted.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/fmt/unformatted.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/fmt/unformatted.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/fmt/unformatted.pkrvars.hcl -------------------------------------------------------------------------------- /command/test-fixtures/fmt_errs/malformed.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/fmt_errs/malformed.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/hcl-only-except/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcl-only-except/build.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/hcl/build-var-in-pp.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcl/build-var-in-pp.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/hcl/build_no_source.pkr.hcl: -------------------------------------------------------------------------------- 1 | build{} 2 | -------------------------------------------------------------------------------- /command/test-fixtures/hcl/datasource.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcl/datasource.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/hcl/dynamic/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcl/dynamic/build.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/hcl/empty_object/setting.auto.pkrvars.hcl: -------------------------------------------------------------------------------- 1 | foo = ["yo"] 2 | bar = { 3 | "baz": "foo", 4 | } 5 | -------------------------------------------------------------------------------- /command/test-fixtures/hcl/empty_object/var.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcl/empty_object/var.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/hcl/force.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcl/force.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/hcl/inspect/aws-builds.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcl/inspect/aws-builds.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/hcl/inspect/fruit_string.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcl/inspect/fruit_string.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/hcl/inspect/virtualbox-builds.pkr.hcl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /command/test-fixtures/hcl/local-ds-validate.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcl/local-ds-validate.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/hcl/nil-component-crash.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcl/nil-component-crash.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/hcl/no_build.pkr.hcl: -------------------------------------------------------------------------------- 1 | source "null" "papaya" { 2 | communicator = "none" 3 | } 4 | -------------------------------------------------------------------------------- /command/test-fixtures/hcl/provisioner-override.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcl/provisioner-override.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/hcl/recipes/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcl/recipes/build.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/hcl/recipes/sources.pkr.hcl: -------------------------------------------------------------------------------- 1 | source "null" "base" { 2 | communicator = "none" 3 | } 4 | -------------------------------------------------------------------------------- /command/test-fixtures/hcl/reprepare/hello.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcl/reprepare/hello.sh -------------------------------------------------------------------------------- /command/test-fixtures/hcl/reprepare/shell-local.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcl/reprepare/shell-local.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/hcl/reprepare/test_cmd.cmd: -------------------------------------------------------------------------------- 1 | echo hello from the %BUILDER% builder %USER% -------------------------------------------------------------------------------- /command/test-fixtures/hcl/test_except_manifest.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcl/test_except_manifest.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/hcl/var-in-pp-name.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcl/var-in-pp-name.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/hcl/variables/ref_non_existing/variables.auto.pkrvars.hcl: -------------------------------------------------------------------------------- 1 | testvar = "auto" 2 | -------------------------------------------------------------------------------- /command/test-fixtures/hcl/variables/untyped_var/var.pkr.hcl: -------------------------------------------------------------------------------- 1 | 2 | variable "untyped" { 3 | } 4 | -------------------------------------------------------------------------------- /command/test-fixtures/hcl/vars-in-build-block.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcl/vars-in-build-block.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/hcl2_upgrade/ami_test/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcl2_upgrade/ami_test/input.json -------------------------------------------------------------------------------- /command/test-fixtures/hcl2_upgrade/azure_shg/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcl2_upgrade/azure_shg/input.json -------------------------------------------------------------------------------- /command/test-fixtures/hcl2_upgrade/complete/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcl2_upgrade/complete/input.json -------------------------------------------------------------------------------- /command/test-fixtures/hcl2_upgrade/escaping/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcl2_upgrade/escaping/input.json -------------------------------------------------------------------------------- /command/test-fixtures/hcl2_upgrade/minimal/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcl2_upgrade/minimal/input.json -------------------------------------------------------------------------------- /command/test-fixtures/hcp/build-description.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcp/build-description.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/hcp/deprecated_labels.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcp/deprecated_labels.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/hcp/dup_build_blocks.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcp/dup_build_blocks.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/hcp/duplicate.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcp/duplicate.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/hcp/hcp_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcp/hcp_build.json -------------------------------------------------------------------------------- /command/test-fixtures/hcp/hcp_normal.pkr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcp/hcp_normal.pkr.json -------------------------------------------------------------------------------- /command/test-fixtures/hcp/multiple_sources.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcp/multiple_sources.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/hcp/slug.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/hcp/slug.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/inspect/unset_var.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/inspect/unset_var.json -------------------------------------------------------------------------------- /command/test-fixtures/parallel/1lock-5wg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/parallel/1lock-5wg.json -------------------------------------------------------------------------------- /command/test-fixtures/parallel/1lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/parallel/1lock.json -------------------------------------------------------------------------------- /command/test-fixtures/parallel/2lock-4wg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/parallel/2lock-4wg.json -------------------------------------------------------------------------------- /command/test-fixtures/parallel/2lock-timeout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/parallel/2lock-timeout.json -------------------------------------------------------------------------------- /command/test-fixtures/parallel/2lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/parallel/2lock.json -------------------------------------------------------------------------------- /command/test-fixtures/timeout/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/timeout/template.json -------------------------------------------------------------------------------- /command/test-fixtures/validate-invalid/broken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/validate-invalid/broken.json -------------------------------------------------------------------------------- /command/test-fixtures/validate/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/validate/build.json -------------------------------------------------------------------------------- /command/test-fixtures/validate/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/validate/build.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/validate/build_with_vars.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/validate/build_with_vars.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/validate/circular_error.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/validate/circular_error.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/validate/datasource.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/validate/datasource.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/validate/invalid_packer_block.pkr.hcl: -------------------------------------------------------------------------------- 1 | packer { 2 | version = ">= v1.0.0" 3 | } 4 | -------------------------------------------------------------------------------- /command/test-fixtures/validate/null_var.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/validate/null_var.json -------------------------------------------------------------------------------- /command/test-fixtures/validate/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/validate/template.json -------------------------------------------------------------------------------- /command/test-fixtures/validate/validate_except.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/validate/validate_except.json -------------------------------------------------------------------------------- /command/test-fixtures/validate/var-file-tests/basic.pkrvars.hcl: -------------------------------------------------------------------------------- 1 | test = "myvalue" 2 | -------------------------------------------------------------------------------- /command/test-fixtures/validate/var_foo_with_no_default.pkr.hcl: -------------------------------------------------------------------------------- 1 | 2 | variable "foo" { 3 | } -------------------------------------------------------------------------------- /command/test-fixtures/var-arg/apple.hcl: -------------------------------------------------------------------------------- 1 | 2 | fruit = "apple" 3 | -------------------------------------------------------------------------------- /command/test-fixtures/var-arg/apple.json: -------------------------------------------------------------------------------- 1 | { 2 | "fruit": "apple" 3 | } 4 | -------------------------------------------------------------------------------- /command/test-fixtures/var-arg/banana.json: -------------------------------------------------------------------------------- 1 | { 2 | "fruit": "banana" 3 | } -------------------------------------------------------------------------------- /command/test-fixtures/var-arg/fruit_builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/var-arg/fruit_builder.json -------------------------------------------------------------------------------- /command/test-fixtures/var-arg/fruit_builder.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/var-arg/fruit_builder.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/var-arg/map.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test-fixtures/var-arg/map.pkr.hcl -------------------------------------------------------------------------------- /command/test-fixtures/var-arg/var-arg-test-autovar-json/peanut.auto.pkrvars.json: -------------------------------------------------------------------------------- 1 | { 2 | "fruit": "peanut" 3 | } -------------------------------------------------------------------------------- /command/test-fixtures/var-arg/var-arg-tests/icecream.auto.pkrvrs.hcl: -------------------------------------------------------------------------------- 1 | fruit = "icecream" -------------------------------------------------------------------------------- /command/test-fixtures/var-arg/var-arg-tests/peanut.auto.pkrvars.json: -------------------------------------------------------------------------------- 1 | { 2 | "fruit": "peanut" 3 | } -------------------------------------------------------------------------------- /command/test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/test_utils.go -------------------------------------------------------------------------------- /command/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/utils.go -------------------------------------------------------------------------------- /command/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/utils_test.go -------------------------------------------------------------------------------- /command/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/validate.go -------------------------------------------------------------------------------- /command/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/validate_test.go -------------------------------------------------------------------------------- /command/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/version.go -------------------------------------------------------------------------------- /command/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/command/version_test.go -------------------------------------------------------------------------------- /commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/commands.go -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/config.go -------------------------------------------------------------------------------- /config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/config_test.go -------------------------------------------------------------------------------- /contrib/zsh-completion/_packer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/contrib/zsh-completion/_packer -------------------------------------------------------------------------------- /datasource/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datasource/hcp-packer-artifact/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/datasource/hcp-packer-artifact/data.go -------------------------------------------------------------------------------- /datasource/hcp-packer-artifact/data.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/datasource/hcp-packer-artifact/data.hcl2spec.go -------------------------------------------------------------------------------- /datasource/hcp-packer-image/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/datasource/hcp-packer-image/data.go -------------------------------------------------------------------------------- /datasource/hcp-packer-image/data.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/datasource/hcp-packer-image/data.hcl2spec.go -------------------------------------------------------------------------------- /datasource/hcp-packer-iteration/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/datasource/hcp-packer-iteration/data.go -------------------------------------------------------------------------------- /datasource/hcp-packer-iteration/data.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/datasource/hcp-packer-iteration/data.hcl2spec.go -------------------------------------------------------------------------------- /datasource/hcp-packer-iteration/data_acc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/datasource/hcp-packer-iteration/data_acc_test.go -------------------------------------------------------------------------------- /datasource/hcp-packer-version/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/datasource/hcp-packer-version/data.go -------------------------------------------------------------------------------- /datasource/hcp-packer-version/data.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/datasource/hcp-packer-version/data.hcl2spec.go -------------------------------------------------------------------------------- /datasource/hcp-packer-version/data_acc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/datasource/hcp-packer-version/data_acc_test.go -------------------------------------------------------------------------------- /datasource/http/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/datasource/http/data.go -------------------------------------------------------------------------------- /datasource/http/data.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/datasource/http/data.hcl2spec.go -------------------------------------------------------------------------------- /datasource/http/data_acc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/datasource/http/data_acc_test.go -------------------------------------------------------------------------------- /datasource/http/test-fixtures/404_url.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/datasource/http/test-fixtures/404_url.pkr.hcl -------------------------------------------------------------------------------- /datasource/http/test-fixtures/basic.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/datasource/http/test-fixtures/basic.pkr.hcl -------------------------------------------------------------------------------- /datasource/http/test-fixtures/empty_url.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/datasource/http/test-fixtures/empty_url.pkr.hcl -------------------------------------------------------------------------------- /datasource/http/test-fixtures/invalid_method.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/datasource/http/test-fixtures/invalid_method.pkr.hcl -------------------------------------------------------------------------------- /datasource/null/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/datasource/null/data.go -------------------------------------------------------------------------------- /datasource/null/data.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/datasource/null/data.hcl2spec.go -------------------------------------------------------------------------------- /examples/_common/minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/_common/minimize.sh -------------------------------------------------------------------------------- /examples/_common/parallels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/_common/parallels.sh -------------------------------------------------------------------------------- /examples/_common/sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/_common/sshd.sh -------------------------------------------------------------------------------- /examples/_common/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/_common/vagrant.sh -------------------------------------------------------------------------------- /examples/_common/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/_common/virtualbox.sh -------------------------------------------------------------------------------- /examples/_common/vmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/_common/vmware.sh -------------------------------------------------------------------------------- /examples/hcl/linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/README.md -------------------------------------------------------------------------------- /examples/hcl/linux/build.alpine.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/build.alpine.pkr.hcl -------------------------------------------------------------------------------- /examples/hcl/linux/build.ubuntu.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/build.ubuntu.pkr.hcl -------------------------------------------------------------------------------- /examples/hcl/linux/etc/http/alpine-answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/etc/http/alpine-answers -------------------------------------------------------------------------------- /examples/hcl/linux/etc/http/alpine-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/etc/http/alpine-setup.sh -------------------------------------------------------------------------------- /examples/hcl/linux/etc/http/alpine-vsphere-answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/etc/http/alpine-vsphere-answers -------------------------------------------------------------------------------- /examples/hcl/linux/etc/http/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/etc/http/preseed.cfg -------------------------------------------------------------------------------- /examples/hcl/linux/etc/http/preseed_hardcoded_ip.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/etc/http/preseed_hardcoded_ip.cfg -------------------------------------------------------------------------------- /examples/hcl/linux/etc/scripts/010-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/etc/scripts/010-update.sh -------------------------------------------------------------------------------- /examples/hcl/linux/etc/scripts/020-sshd.sh: -------------------------------------------------------------------------------- 1 | ../../../../_common/sshd.sh -------------------------------------------------------------------------------- /examples/hcl/linux/etc/scripts/030-networking.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/etc/scripts/030-networking.sh -------------------------------------------------------------------------------- /examples/hcl/linux/etc/scripts/040-sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/etc/scripts/040-sudoers.sh -------------------------------------------------------------------------------- /examples/hcl/linux/etc/scripts/050-vagrant.sh: -------------------------------------------------------------------------------- 1 | ../../../../_common/vagrant.sh -------------------------------------------------------------------------------- /examples/hcl/linux/etc/scripts/060-virtualbox.sh: -------------------------------------------------------------------------------- 1 | ../../../../_common/virtualbox.sh -------------------------------------------------------------------------------- /examples/hcl/linux/etc/scripts/070-vmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/etc/scripts/070-vmware.sh -------------------------------------------------------------------------------- /examples/hcl/linux/etc/scripts/080-parallels.sh: -------------------------------------------------------------------------------- 1 | ../../../../_common/parallels.sh -------------------------------------------------------------------------------- /examples/hcl/linux/etc/scripts/090-hyperv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/etc/scripts/090-hyperv.sh -------------------------------------------------------------------------------- /examples/hcl/linux/etc/scripts/100-cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/etc/scripts/100-cleanup.sh -------------------------------------------------------------------------------- /examples/hcl/linux/etc/scripts/110-minimize.sh: -------------------------------------------------------------------------------- 1 | ../../../../_common/minimize.sh -------------------------------------------------------------------------------- /examples/hcl/linux/source.esxi-vmware-iso.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/source.esxi-vmware-iso.pkr.hcl -------------------------------------------------------------------------------- /examples/hcl/linux/source.parallels-iso.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/source.parallels-iso.pkr.hcl -------------------------------------------------------------------------------- /examples/hcl/linux/source.qemu.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/source.qemu.pkr.hcl -------------------------------------------------------------------------------- /examples/hcl/linux/source.virtualbox-iso.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/source.virtualbox-iso.pkr.hcl -------------------------------------------------------------------------------- /examples/hcl/linux/source.vmware-iso.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/source.vmware-iso.pkr.hcl -------------------------------------------------------------------------------- /examples/hcl/linux/source.vmware-vmx.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/source.vmware-vmx.pkr.hcl -------------------------------------------------------------------------------- /examples/hcl/linux/source.vsphere-iso.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/source.vsphere-iso.pkr.hcl -------------------------------------------------------------------------------- /examples/hcl/linux/variables.16.04.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/variables.16.04.pkr.hcl -------------------------------------------------------------------------------- /examples/hcl/linux/variables.18.04.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/variables.18.04.pkr.hcl -------------------------------------------------------------------------------- /examples/hcl/linux/variables.alpine.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/variables.alpine.pkr.hcl -------------------------------------------------------------------------------- /examples/hcl/linux/variables.common.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/hcl/linux/variables.common.pkr.hcl -------------------------------------------------------------------------------- /examples/preseeds/ubuntu_preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/examples/preseeds/ubuntu_preseed.cfg -------------------------------------------------------------------------------- /fix/fixer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer.go -------------------------------------------------------------------------------- /fix/fixer_amazon_enhanced_networking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_amazon_enhanced_networking.go -------------------------------------------------------------------------------- /fix/fixer_amazon_enhanced_networking_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_amazon_enhanced_networking_test.go -------------------------------------------------------------------------------- /fix/fixer_amazon_private_ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_amazon_private_ip.go -------------------------------------------------------------------------------- /fix/fixer_amazon_private_ip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_amazon_private_ip_test.go -------------------------------------------------------------------------------- /fix/fixer_amazon_shutdown_behavior.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_amazon_shutdown_behavior.go -------------------------------------------------------------------------------- /fix/fixer_amazon_shutdown_behavior_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_amazon_shutdown_behavior_test.go -------------------------------------------------------------------------------- /fix/fixer_amazon_spot_price_product.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_amazon_spot_price_product.go -------------------------------------------------------------------------------- /fix/fixer_amazon_temporary_security_group_cidrs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_amazon_temporary_security_group_cidrs.go -------------------------------------------------------------------------------- /fix/fixer_azure_exclude_from_latest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_azure_exclude_from_latest.go -------------------------------------------------------------------------------- /fix/fixer_azure_exclude_from_latest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_azure_exclude_from_latest_test.go -------------------------------------------------------------------------------- /fix/fixer_clean_image_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_clean_image_name.go -------------------------------------------------------------------------------- /fix/fixer_clean_image_name_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_clean_image_name_test.go -------------------------------------------------------------------------------- /fix/fixer_comm_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_comm_config.go -------------------------------------------------------------------------------- /fix/fixer_comm_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_comm_config_test.go -------------------------------------------------------------------------------- /fix/fixer_createtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_createtime.go -------------------------------------------------------------------------------- /fix/fixer_createtime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_createtime_test.go -------------------------------------------------------------------------------- /fix/fixer_docker_email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_docker_email.go -------------------------------------------------------------------------------- /fix/fixer_galaxy_command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_galaxy_command.go -------------------------------------------------------------------------------- /fix/fixer_galaxy_command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_galaxy_command_test.go -------------------------------------------------------------------------------- /fix/fixer_hyperv_cpu_and_ram_naming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_hyperv_cpu_and_ram_naming.go -------------------------------------------------------------------------------- /fix/fixer_hyperv_deprecations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_hyperv_deprecations.go -------------------------------------------------------------------------------- /fix/fixer_hyperv_deprecations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_hyperv_deprecations_test.go -------------------------------------------------------------------------------- /fix/fixer_hyperv_vmxc_typo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_hyperv_vmxc_typo.go -------------------------------------------------------------------------------- /fix/fixer_hyperv_vmxc_typo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_hyperv_vmxc_typo_test.go -------------------------------------------------------------------------------- /fix/fixer_iso_checksum_type_and_url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_iso_checksum_type_and_url.go -------------------------------------------------------------------------------- /fix/fixer_iso_checksum_type_and_url_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_iso_checksum_type_and_url_test.go -------------------------------------------------------------------------------- /fix/fixer_iso_md5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_iso_md5.go -------------------------------------------------------------------------------- /fix/fixer_iso_md5_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_iso_md5_test.go -------------------------------------------------------------------------------- /fix/fixer_parallels_deprecations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_parallels_deprecations.go -------------------------------------------------------------------------------- /fix/fixer_parallels_deprecations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_parallels_deprecations_test.go -------------------------------------------------------------------------------- /fix/fixer_parallels_headless.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_parallels_headless.go -------------------------------------------------------------------------------- /fix/fixer_parallels_headless_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_parallels_headless_test.go -------------------------------------------------------------------------------- /fix/fixer_powershell_escapes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_powershell_escapes.go -------------------------------------------------------------------------------- /fix/fixer_pp_docker_tag_tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_pp_docker_tag_tags.go -------------------------------------------------------------------------------- /fix/fixer_pp_docker_tag_tags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_pp_docker_tag_tags_test.go -------------------------------------------------------------------------------- /fix/fixer_pp_manifest_filename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_pp_manifest_filename.go -------------------------------------------------------------------------------- /fix/fixer_pp_manifest_filename_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_pp_manifest_filename_test.go -------------------------------------------------------------------------------- /fix/fixer_pp_vagrant_override.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_pp_vagrant_override.go -------------------------------------------------------------------------------- /fix/fixer_pp_vagrant_override_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_pp_vagrant_override_test.go -------------------------------------------------------------------------------- /fix/fixer_proxmox_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_proxmox_type.go -------------------------------------------------------------------------------- /fix/fixer_proxmox_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_proxmox_type_test.go -------------------------------------------------------------------------------- /fix/fixer_qemu_disk_size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_qemu_disk_size.go -------------------------------------------------------------------------------- /fix/fixer_qemu_disk_size_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_qemu_disk_size_test.go -------------------------------------------------------------------------------- /fix/fixer_qemu_host_port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_qemu_host_port.go -------------------------------------------------------------------------------- /fix/fixer_qemu_host_port_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_qemu_host_port_test.go -------------------------------------------------------------------------------- /fix/fixer_scaleway_access_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_scaleway_access_key.go -------------------------------------------------------------------------------- /fix/fixer_scaleway_access_key_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_scaleway_access_key_test.go -------------------------------------------------------------------------------- /fix/fixer_ssh_timeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_ssh_timeout.go -------------------------------------------------------------------------------- /fix/fixer_ssh_timeout_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_ssh_timeout_test.go -------------------------------------------------------------------------------- /fix/fixer_sshdisableagent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_sshdisableagent.go -------------------------------------------------------------------------------- /fix/fixer_sshdisableagent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_sshdisableagent_test.go -------------------------------------------------------------------------------- /fix/fixer_sshkeypath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_sshkeypath.go -------------------------------------------------------------------------------- /fix/fixer_sshkeypath_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_sshkeypath_test.go -------------------------------------------------------------------------------- /fix/fixer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_test.go -------------------------------------------------------------------------------- /fix/fixer_virtualbox_gaattach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_virtualbox_gaattach.go -------------------------------------------------------------------------------- /fix/fixer_virtualbox_gaattach_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_virtualbox_gaattach_test.go -------------------------------------------------------------------------------- /fix/fixer_virtualbox_rename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_virtualbox_rename.go -------------------------------------------------------------------------------- /fix/fixer_virtualbox_rename_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_virtualbox_rename_test.go -------------------------------------------------------------------------------- /fix/fixer_vmware_compaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_vmware_compaction.go -------------------------------------------------------------------------------- /fix/fixer_vmware_compaction_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_vmware_compaction_test.go -------------------------------------------------------------------------------- /fix/fixer_vmware_rename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_vmware_rename.go -------------------------------------------------------------------------------- /fix/fixer_vmware_rename_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_vmware_rename_test.go -------------------------------------------------------------------------------- /fix/fixer_vsphere_network_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_vsphere_network_storage.go -------------------------------------------------------------------------------- /fix/fixer_vsphere_network_storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/fixer_vsphere_network_storage_test.go -------------------------------------------------------------------------------- /fix/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/fix/helpers.go -------------------------------------------------------------------------------- /go: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/go.sum -------------------------------------------------------------------------------- /hcl2template/addrs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/addrs/doc.go -------------------------------------------------------------------------------- /hcl2template/addrs/input_variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/addrs/input_variable.go -------------------------------------------------------------------------------- /hcl2template/addrs/parse_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/addrs/parse_ref.go -------------------------------------------------------------------------------- /hcl2template/addrs/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/addrs/plugin.go -------------------------------------------------------------------------------- /hcl2template/addrs/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/addrs/plugin_test.go -------------------------------------------------------------------------------- /hcl2template/addrs/referenceable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/addrs/referenceable.go -------------------------------------------------------------------------------- /hcl2template/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/common_test.go -------------------------------------------------------------------------------- /hcl2template/components.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/components.go -------------------------------------------------------------------------------- /hcl2template/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/decode.go -------------------------------------------------------------------------------- /hcl2template/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/docs.go -------------------------------------------------------------------------------- /hcl2template/fixtures/malformed_override.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/fixtures/malformed_override.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/fixtures/well_formed_provisioner.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/fixtures/well_formed_provisioner.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/formatter.go -------------------------------------------------------------------------------- /hcl2template/formatter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/formatter_test.go -------------------------------------------------------------------------------- /hcl2template/function/Consul.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/Consul.go -------------------------------------------------------------------------------- /hcl2template/function/alltrue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/alltrue.go -------------------------------------------------------------------------------- /hcl2template/function/alltrue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/alltrue_test.go -------------------------------------------------------------------------------- /hcl2template/function/anytrue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/anytrue.go -------------------------------------------------------------------------------- /hcl2template/function/anytrue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/anytrue_test.go -------------------------------------------------------------------------------- /hcl2template/function/aws_secretetkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/aws_secretetkey.go -------------------------------------------------------------------------------- /hcl2template/function/datetime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/datetime.go -------------------------------------------------------------------------------- /hcl2template/function/datetime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/datetime_test.go -------------------------------------------------------------------------------- /hcl2template/function/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/encoding.go -------------------------------------------------------------------------------- /hcl2template/function/encoding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/encoding_test.go -------------------------------------------------------------------------------- /hcl2template/function/ends_with.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/ends_with.go -------------------------------------------------------------------------------- /hcl2template/function/ends_with_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/ends_with_test.go -------------------------------------------------------------------------------- /hcl2template/function/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/env.go -------------------------------------------------------------------------------- /hcl2template/function/filebase64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/filebase64.go -------------------------------------------------------------------------------- /hcl2template/function/filebase64_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/filebase64_test.go -------------------------------------------------------------------------------- /hcl2template/function/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/index.go -------------------------------------------------------------------------------- /hcl2template/function/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/index_test.go -------------------------------------------------------------------------------- /hcl2template/function/length.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/length.go -------------------------------------------------------------------------------- /hcl2template/function/length_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/length_test.go -------------------------------------------------------------------------------- /hcl2template/function/refinements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/refinements.go -------------------------------------------------------------------------------- /hcl2template/function/starts_with.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/starts_with.go -------------------------------------------------------------------------------- /hcl2template/function/starts_with_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/starts_with_test.go -------------------------------------------------------------------------------- /hcl2template/function/strcontains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/strcontains.go -------------------------------------------------------------------------------- /hcl2template/function/strcontains_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/strcontains_test.go -------------------------------------------------------------------------------- /hcl2template/function/sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/sum.go -------------------------------------------------------------------------------- /hcl2template/function/sum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/sum_test.go -------------------------------------------------------------------------------- /hcl2template/function/templatefile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/templatefile.go -------------------------------------------------------------------------------- /hcl2template/function/templatefile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/templatefile_test.go -------------------------------------------------------------------------------- /hcl2template/function/testdata/bare.tmpl: -------------------------------------------------------------------------------- 1 | ${val} -------------------------------------------------------------------------------- /hcl2template/function/testdata/func.tmpl: -------------------------------------------------------------------------------- 1 | The items are ${join(", ", list)} -------------------------------------------------------------------------------- /hcl2template/function/testdata/hello.tmpl: -------------------------------------------------------------------------------- 1 | Hello, ${name}! -------------------------------------------------------------------------------- /hcl2template/function/testdata/hello.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /hcl2template/function/testdata/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/testdata/icon.png -------------------------------------------------------------------------------- /hcl2template/function/testdata/list.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/testdata/list.tmpl -------------------------------------------------------------------------------- /hcl2template/function/testdata/recursive.tmpl: -------------------------------------------------------------------------------- 1 | ${templatefile("recursive.tmpl", {})} -------------------------------------------------------------------------------- /hcl2template/function/vault.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/function/vault.go -------------------------------------------------------------------------------- /hcl2template/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/functions.go -------------------------------------------------------------------------------- /hcl2template/internal/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/internal/mock.go -------------------------------------------------------------------------------- /hcl2template/internal/mock.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/internal/mock.hcl2spec.go -------------------------------------------------------------------------------- /hcl2template/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/parser.go -------------------------------------------------------------------------------- /hcl2template/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/plugin.go -------------------------------------------------------------------------------- /hcl2template/repl/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/repl/format.go -------------------------------------------------------------------------------- /hcl2template/repl/repl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/repl/repl.go -------------------------------------------------------------------------------- /hcl2template/shim/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/shim/mock.go -------------------------------------------------------------------------------- /hcl2template/shim/mock.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/shim/mock.hcl2spec.go -------------------------------------------------------------------------------- /hcl2template/shim/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/shim/values.go -------------------------------------------------------------------------------- /hcl2template/shim/values_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/shim/values_test.go -------------------------------------------------------------------------------- /hcl2template/testdata/build.pkr.hcl/basic.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/build.pkr.hcl/basic.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/build/basic.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/build/basic.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/build/invalid_source_reference.pkr.hcl: -------------------------------------------------------------------------------- 1 | 2 | build { 3 | sources = ["ami"] 4 | } 5 | -------------------------------------------------------------------------------- /hcl2template/testdata/build/named.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/build/named.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/build/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/build/variables.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/communicator/basic.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/communicator/basic.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/complete/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/complete/build.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/complete/datasource.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/complete/datasource.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/complete/sources.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/complete/sources.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/complete/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/complete/variables.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/datasources/basic.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/datasources/basic.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/datasources/duplicate.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/datasources/duplicate.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/datasources/nonexistent.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/datasources/nonexistent.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/datasources/not-allowed.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/datasources/not-allowed.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/datasources/recursive.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/datasources/recursive.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/datasources/unnamed.pkr.hcl: -------------------------------------------------------------------------------- 1 | data "amazon-ami" { 2 | foo = "bar" 3 | } -------------------------------------------------------------------------------- /hcl2template/testdata/datasources/untyped.pkr.hcl: -------------------------------------------------------------------------------- 1 | data { 2 | foo = "bar" 3 | } -------------------------------------------------------------------------------- /hcl2template/testdata/empty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hcl2template/testdata/format/formatted.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/format/formatted.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/format/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/format/test.json -------------------------------------------------------------------------------- /hcl2template/testdata/format/unformatted.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/format/unformatted.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/format/unformatted.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/format/unformatted.pkrvars.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/init/imports/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/init/imports/build.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/init/imports/sources.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/init/imports/sources.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/init/imports/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/init/imports/variables.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/sources/basic.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/sources/basic.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/sources/duplicate.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/sources/duplicate.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/sources/nonexistent.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/sources/nonexistent.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/sources/unnamed.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/sources/unnamed.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/sources/untyped.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/sources/untyped.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/unknown/block_type.pkr.hcl: -------------------------------------------------------------------------------- 1 | 2 | potato { 3 | } 4 | -------------------------------------------------------------------------------- /hcl2template/testdata/variables/basic.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/variables/basic.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/variables/complicated/a.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/variables/complicated/a.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/variables/complicated/b.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/variables/complicated/b.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/variables/complicated/c.pkr.hcl: -------------------------------------------------------------------------------- 1 | variable "name_prefix" { 2 | default = "foo" 3 | } -------------------------------------------------------------------------------- /hcl2template/testdata/variables/complicated/d.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/variables/complicated/d.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/variables/empty.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/variables/empty.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/testdata/variables/set-foo-too-wee.hcl: -------------------------------------------------------------------------------- 1 | foo = "wee" 2 | -------------------------------------------------------------------------------- /hcl2template/testdata/variables/unknown_key.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/testdata/variables/unknown_key.pkr.hcl -------------------------------------------------------------------------------- /hcl2template/types.build.from.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/types.build.from.go -------------------------------------------------------------------------------- /hcl2template/types.build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/types.build.go -------------------------------------------------------------------------------- /hcl2template/types.build.hcp_packer_registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/types.build.hcp_packer_registry.go -------------------------------------------------------------------------------- /hcl2template/types.build.hcp_packer_registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/types.build.hcp_packer_registry_test.go -------------------------------------------------------------------------------- /hcl2template/types.build.post-processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/types.build.post-processor.go -------------------------------------------------------------------------------- /hcl2template/types.build.provisioners.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/types.build.provisioners.go -------------------------------------------------------------------------------- /hcl2template/types.build.provisioners_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/types.build.provisioners_test.go -------------------------------------------------------------------------------- /hcl2template/types.build_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/types.build_test.go -------------------------------------------------------------------------------- /hcl2template/types.datasource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/types.datasource.go -------------------------------------------------------------------------------- /hcl2template/types.datasource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/types.datasource_test.go -------------------------------------------------------------------------------- /hcl2template/types.hcl_post-processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/types.hcl_post-processor.go -------------------------------------------------------------------------------- /hcl2template/types.hcl_provisioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/types.hcl_provisioner.go -------------------------------------------------------------------------------- /hcl2template/types.hcl_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/types.hcl_ref.go -------------------------------------------------------------------------------- /hcl2template/types.packer_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/types.packer_config.go -------------------------------------------------------------------------------- /hcl2template/types.packer_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/types.packer_config_test.go -------------------------------------------------------------------------------- /hcl2template/types.refstring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/types.refstring.go -------------------------------------------------------------------------------- /hcl2template/types.required_plugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/types.required_plugins.go -------------------------------------------------------------------------------- /hcl2template/types.required_plugins_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/types.required_plugins_test.go -------------------------------------------------------------------------------- /hcl2template/types.source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/types.source.go -------------------------------------------------------------------------------- /hcl2template/types.source_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/types.source_test.go -------------------------------------------------------------------------------- /hcl2template/types.variables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/types.variables.go -------------------------------------------------------------------------------- /hcl2template/types.variables_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/types.variables_test.go -------------------------------------------------------------------------------- /hcl2template/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/utils.go -------------------------------------------------------------------------------- /hcl2template/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/version.go -------------------------------------------------------------------------------- /hcl2template/version_required.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/hcl2template/version_required.go -------------------------------------------------------------------------------- /helper/wrappedreadline/wrappedreadline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/helper/wrappedreadline/wrappedreadline.go -------------------------------------------------------------------------------- /helper/wrappedreadline/wrappedreadline_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/helper/wrappedreadline/wrappedreadline_solaris.go -------------------------------------------------------------------------------- /helper/wrappedreadline/wrappedreadline_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/helper/wrappedreadline/wrappedreadline_unix.go -------------------------------------------------------------------------------- /helper/wrappedreadline/wrappedreadline_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/helper/wrappedreadline/wrappedreadline_windows.go -------------------------------------------------------------------------------- /helper/wrappedstreams/streams.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/helper/wrappedstreams/streams.go -------------------------------------------------------------------------------- /helper/wrappedstreams/streams_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/helper/wrappedstreams/streams_other.go -------------------------------------------------------------------------------- /helper/wrappedstreams/streams_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/helper/wrappedstreams/streams_windows.go -------------------------------------------------------------------------------- /internal/dag/dag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/dag/dag.go -------------------------------------------------------------------------------- /internal/dag/dag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/dag/dag_test.go -------------------------------------------------------------------------------- /internal/dag/edge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/dag/edge.go -------------------------------------------------------------------------------- /internal/dag/edge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/dag/edge_test.go -------------------------------------------------------------------------------- /internal/dag/graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/dag/graph.go -------------------------------------------------------------------------------- /internal/dag/graph_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/dag/graph_test.go -------------------------------------------------------------------------------- /internal/dag/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/dag/set.go -------------------------------------------------------------------------------- /internal/dag/set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/dag/set_test.go -------------------------------------------------------------------------------- /internal/dag/tarjan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/dag/tarjan.go -------------------------------------------------------------------------------- /internal/dag/tarjan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/dag/tarjan_test.go -------------------------------------------------------------------------------- /internal/hcp/api/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/api/client.go -------------------------------------------------------------------------------- /internal/hcp/api/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/api/client_test.go -------------------------------------------------------------------------------- /internal/hcp/api/deprecated_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/api/deprecated_client.go -------------------------------------------------------------------------------- /internal/hcp/api/deprecated_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/api/deprecated_service.go -------------------------------------------------------------------------------- /internal/hcp/api/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/api/errors.go -------------------------------------------------------------------------------- /internal/hcp/api/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/api/errors_test.go -------------------------------------------------------------------------------- /internal/hcp/api/mock_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/api/mock_service.go -------------------------------------------------------------------------------- /internal/hcp/api/service_bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/api/service_bucket.go -------------------------------------------------------------------------------- /internal/hcp/api/service_build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/api/service_build.go -------------------------------------------------------------------------------- /internal/hcp/api/service_channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/api/service_channel.go -------------------------------------------------------------------------------- /internal/hcp/api/service_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/api/service_version.go -------------------------------------------------------------------------------- /internal/hcp/env/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/env/env.go -------------------------------------------------------------------------------- /internal/hcp/env/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/env/env_test.go -------------------------------------------------------------------------------- /internal/hcp/env/variables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/env/variables.go -------------------------------------------------------------------------------- /internal/hcp/registry/artifact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/registry/artifact.go -------------------------------------------------------------------------------- /internal/hcp/registry/deprecated_ds_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/registry/deprecated_ds_config.go -------------------------------------------------------------------------------- /internal/hcp/registry/ds_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/registry/ds_config.go -------------------------------------------------------------------------------- /internal/hcp/registry/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/registry/errors.go -------------------------------------------------------------------------------- /internal/hcp/registry/hcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/registry/hcl.go -------------------------------------------------------------------------------- /internal/hcp/registry/hcl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/registry/hcl_test.go -------------------------------------------------------------------------------- /internal/hcp/registry/hcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/registry/hcp.go -------------------------------------------------------------------------------- /internal/hcp/registry/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/registry/json.go -------------------------------------------------------------------------------- /internal/hcp/registry/metadata/cicd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/registry/metadata/cicd.go -------------------------------------------------------------------------------- /internal/hcp/registry/metadata/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/registry/metadata/os.go -------------------------------------------------------------------------------- /internal/hcp/registry/metadata/os_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/registry/metadata/os_test.go -------------------------------------------------------------------------------- /internal/hcp/registry/metadata/vcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/registry/metadata/vcs.go -------------------------------------------------------------------------------- /internal/hcp/registry/null_registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/registry/null_registry.go -------------------------------------------------------------------------------- /internal/hcp/registry/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/registry/registry.go -------------------------------------------------------------------------------- /internal/hcp/registry/types.bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/registry/types.bucket.go -------------------------------------------------------------------------------- /internal/hcp/registry/types.bucket_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/registry/types.bucket_service_test.go -------------------------------------------------------------------------------- /internal/hcp/registry/types.bucket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/registry/types.bucket_test.go -------------------------------------------------------------------------------- /internal/hcp/registry/types.builds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/registry/types.builds.go -------------------------------------------------------------------------------- /internal/hcp/registry/types.metadata_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/registry/types.metadata_store.go -------------------------------------------------------------------------------- /internal/hcp/registry/types.version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/registry/types.version.go -------------------------------------------------------------------------------- /internal/hcp/registry/types.version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/internal/hcp/registry/types.version_test.go -------------------------------------------------------------------------------- /log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/log.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/main_test.go -------------------------------------------------------------------------------- /packer/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/build.go -------------------------------------------------------------------------------- /packer/build_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/build_test.go -------------------------------------------------------------------------------- /packer/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/builder_test.go -------------------------------------------------------------------------------- /packer/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/client_test.go -------------------------------------------------------------------------------- /packer/cmd_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/cmd_builder.go -------------------------------------------------------------------------------- /packer/cmd_builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/cmd_builder_test.go -------------------------------------------------------------------------------- /packer/cmd_datasource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/cmd_datasource.go -------------------------------------------------------------------------------- /packer/cmd_datasource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/cmd_datasource_test.go -------------------------------------------------------------------------------- /packer/cmd_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/cmd_hook.go -------------------------------------------------------------------------------- /packer/cmd_hook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/cmd_hook_test.go -------------------------------------------------------------------------------- /packer/cmd_post_processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/cmd_post_processor.go -------------------------------------------------------------------------------- /packer/cmd_post_processor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/cmd_post_processor_test.go -------------------------------------------------------------------------------- /packer/cmd_provisioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/cmd_provisioner.go -------------------------------------------------------------------------------- /packer/cmd_provisioner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/cmd_provisioner_test.go -------------------------------------------------------------------------------- /packer/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/core.go -------------------------------------------------------------------------------- /packer/core_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/core_test.go -------------------------------------------------------------------------------- /packer/fixconfigmode_enumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/fixconfigmode_enumer.go -------------------------------------------------------------------------------- /packer/maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/maps.go -------------------------------------------------------------------------------- /packer/packer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/packer_test.go -------------------------------------------------------------------------------- /packer/plugin-getter/checksum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/plugin-getter/checksum.go -------------------------------------------------------------------------------- /packer/plugin-getter/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/plugin-getter/docs.go -------------------------------------------------------------------------------- /packer/plugin-getter/github/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/plugin-getter/github/docs.go -------------------------------------------------------------------------------- /packer/plugin-getter/github/getter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/plugin-getter/github/getter.go -------------------------------------------------------------------------------- /packer/plugin-getter/github/getter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/plugin-getter/github/getter_test.go -------------------------------------------------------------------------------- /packer/plugin-getter/plugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/plugin-getter/plugins.go -------------------------------------------------------------------------------- /packer/plugin-getter/plugins_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/plugin-getter/plugins_test.go -------------------------------------------------------------------------------- /packer/plugin-getter/release/getter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/plugin-getter/release/getter.go -------------------------------------------------------------------------------- /packer/plugin-getter/release/getter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/plugin-getter/release/getter_test.go -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins/github.com/hashicorp/amazon/packer-plugin-amazon_v1.2.3_x5.0_darwin_amd64: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins/github.com/hashicorp/amazon/packer-plugin-amazon_v1.2.3_x5.0_windows_amd64.exe: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins/github.com/hashicorp/amazon/packer-plugin-amazon_v1.2.3_x5.1_darwin_amd64: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins/github.com/hashicorp/amazon/packer-plugin-amazon_v1.2.4_x5.0_darwin_amd64: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins/github.com/hashicorp/amazon/packer-plugin-amazon_v1.2.4_x5.0_windows_amd64.exe: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins/github.com/hashicorp/amazon/packer-plugin-amazon_v1.2.5_x5.0_darwin_amd64: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins/github.com/hashicorp/amazon/packer-plugin-amazon_v1.2.5_x5.0_windows_amd64.exe: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins/github.com/hashicorp/amazon/packer-plugin-amazon_v2.0.0_x6.0_darwin_amd64: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins/github.com/hashicorp/google/packer-plugin-google_v4.5.6_x5.0_darwin_amd64: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins/github.com/hashicorp/google/packer-plugin-google_v4.5.6_x5.0_windows_amd64.exe: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins/github.com/hashicorp/google/packer-plugin-google_v4.5.7_x5.0_darwin_amd64: -------------------------------------------------------------------------------- 1 | 7 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins/github.com/hashicorp/google/packer-plugin-google_v4.5.7_x5.0_windows_amd64.exe: -------------------------------------------------------------------------------- 1 | 7 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins/github.com/hashicorp/google/packer-plugin-google_v4.5.8_x5.0_darwin_amd64: -------------------------------------------------------------------------------- 1 | 8 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins/github.com/hashicorp/google/packer-plugin-google_v4.5.8_x5.0_windows_amd64.exe: -------------------------------------------------------------------------------- 1 | 8 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins_2/github.com/hashicorp copy/amazon/packer-plugin-amazon_v1.2.6_x5.1_darwin_amd64: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins_2/github.com/hashicorp copy/google/packer-plugin-google_v4.5.6_x5.0_darwin_amd64: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins_2/github.com/hashicorp copy/google/packer-plugin-google_v4.5.6_x5.0_windows_amd64.exe: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins_2/github.com/hashicorp copy/google/packer-plugin-google_v4.5.9_x5.0_darwin_amd64: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins_2/github.com/hashicorp copy/google/packer-plugin-google_v4.5.9_x5.0_windows_amd64.exe: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins_2/github.com/hashicorp/amazon/packer-plugin-amazon_v1.2.6_x5.1_darwin_amd64: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins_2/github.com/hashicorp/google/packer-plugin-google_v4.5.6_x5.0_darwin_amd64: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins_2/github.com/hashicorp/google/packer-plugin-google_v4.5.6_x5.0_windows_amd64.exe: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins_2/github.com/hashicorp/google/packer-plugin-google_v4.5.9_x5.0_darwin_amd64: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins_2/github.com/hashicorp/google/packer-plugin-google_v4.5.9_x5.0_windows_amd64.exe: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins_3/github.com/hashicorp/alazon/packer-plugin-alazon_v1.2.5_x5.0_linux_amd64: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/plugins_3/github.com/hashicorp/amazon/packer-plugin-amazon_v1.2.5_x5.0_linux_amd64: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/wrong_checksums/github.com/hashicorp/amazon/packer-plugin-amazon_v1.2.3_x5.0_darwin_amd64: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /packer/plugin-getter/testdata/wrong_checksums/github.com/hashicorp/amazon/packer-plugin-amazon_v1.2.6_x5.1_darwin_amd64: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packer/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/plugin.go -------------------------------------------------------------------------------- /packer/plugin_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/plugin_client.go -------------------------------------------------------------------------------- /packer/plugin_discover_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/plugin_discover_test.go -------------------------------------------------------------------------------- /packer/plugin_folders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/plugin_folders.go -------------------------------------------------------------------------------- /packer/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/plugin_test.go -------------------------------------------------------------------------------- /packer/post_processor_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/post_processor_mock.go -------------------------------------------------------------------------------- /packer/post_processor_mock.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/post_processor_mock.hcl2spec.go -------------------------------------------------------------------------------- /packer/progressbar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/progressbar.go -------------------------------------------------------------------------------- /packer/progressbar_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/progressbar_solaris.go -------------------------------------------------------------------------------- /packer/progressbar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/progressbar_test.go -------------------------------------------------------------------------------- /packer/provisioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/provisioner.go -------------------------------------------------------------------------------- /packer/provisioner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/provisioner_test.go -------------------------------------------------------------------------------- /packer/provisioner_timeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/provisioner_timeout.go -------------------------------------------------------------------------------- /packer/run_interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/run_interfaces.go -------------------------------------------------------------------------------- /packer/telemetry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/telemetry.go -------------------------------------------------------------------------------- /packer/telemetry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/telemetry_test.go -------------------------------------------------------------------------------- /packer/test-fixtures/build-basic-interpolated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/build-basic-interpolated.json -------------------------------------------------------------------------------- /packer/test-fixtures/build-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/build-basic.json -------------------------------------------------------------------------------- /packer/test-fixtures/build-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/build-env.json -------------------------------------------------------------------------------- /packer/test-fixtures/build-interpolated-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/build-interpolated-name.json -------------------------------------------------------------------------------- /packer/test-fixtures/build-names-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/build-names-basic.json -------------------------------------------------------------------------------- /packer/test-fixtures/build-names-func.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/build-names-func.json -------------------------------------------------------------------------------- /packer/test-fixtures/build-pp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/build-pp.json -------------------------------------------------------------------------------- /packer/test-fixtures/build-prov-override.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/build-prov-override.json -------------------------------------------------------------------------------- /packer/test-fixtures/build-prov-retry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/build-prov-retry.json -------------------------------------------------------------------------------- /packer/test-fixtures/build-prov-skip-include.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/build-prov-skip-include.json -------------------------------------------------------------------------------- /packer/test-fixtures/build-prov-skip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/build-prov-skip.json -------------------------------------------------------------------------------- /packer/test-fixtures/build-prov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/build-prov.json -------------------------------------------------------------------------------- /packer/test-fixtures/build-split-func.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/build-split-func.json -------------------------------------------------------------------------------- /packer/test-fixtures/build-template-path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/build-template-path.json -------------------------------------------------------------------------------- /packer/test-fixtures/build-var-build-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/build-var-build-name.json -------------------------------------------------------------------------------- /packer/test-fixtures/build-var-build-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/build-var-build-type.json -------------------------------------------------------------------------------- /packer/test-fixtures/build-var-file-interpolate.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "{{ user `my_var` }}" 3 | } -------------------------------------------------------------------------------- /packer/test-fixtures/build-var-file-interpolate2.json: -------------------------------------------------------------------------------- 1 | { 2 | "my_var": "interpolate this, yall" 3 | } -------------------------------------------------------------------------------- /packer/test-fixtures/build-var-packer-version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/build-var-packer-version.json -------------------------------------------------------------------------------- /packer/test-fixtures/build-variables-interpolate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/build-variables-interpolate.json -------------------------------------------------------------------------------- /packer/test-fixtures/push-vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/push-vars.json -------------------------------------------------------------------------------- /packer/test-fixtures/sensitive-variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/sensitive-variables.json -------------------------------------------------------------------------------- /packer/test-fixtures/validate-dup-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/validate-dup-builder.json -------------------------------------------------------------------------------- /packer/test-fixtures/validate-min-version-high.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/validate-min-version-high.json -------------------------------------------------------------------------------- /packer/test-fixtures/validate-min-version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/validate-min-version.json -------------------------------------------------------------------------------- /packer/test-fixtures/validate-req-variable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/test-fixtures/validate-req-variable.json -------------------------------------------------------------------------------- /packer/testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/testing.go -------------------------------------------------------------------------------- /packer/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/ui.go -------------------------------------------------------------------------------- /packer/ui_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer/ui_test.go -------------------------------------------------------------------------------- /packer_test/common/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/common/base.go -------------------------------------------------------------------------------- /packer_test/common/check/file_gadgets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/common/check/file_gadgets.go -------------------------------------------------------------------------------- /packer_test/common/check/gadgets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/common/check/gadgets.go -------------------------------------------------------------------------------- /packer_test/common/check/pipe_checker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/common/check/pipe_checker.go -------------------------------------------------------------------------------- /packer_test/common/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/common/commands.go -------------------------------------------------------------------------------- /packer_test/common/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/common/fs.go -------------------------------------------------------------------------------- /packer_test/common/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/common/plugin.go -------------------------------------------------------------------------------- /packer_test/common/plugin_tester/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/common/plugin_tester/LICENSE -------------------------------------------------------------------------------- /packer_test/common/plugin_tester/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/common/plugin_tester/README.md -------------------------------------------------------------------------------- /packer_test/common/plugin_tester/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/common/plugin_tester/docs/README.md -------------------------------------------------------------------------------- /packer_test/common/plugin_tester/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/common/plugin_tester/example/README.md -------------------------------------------------------------------------------- /packer_test/common/plugin_tester/example/data.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/common/plugin_tester/example/data.pkr.hcl -------------------------------------------------------------------------------- /packer_test/common/plugin_tester/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/common/plugin_tester/go.mod -------------------------------------------------------------------------------- /packer_test/common/plugin_tester/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/common/plugin_tester/go.sum -------------------------------------------------------------------------------- /packer_test/common/plugin_tester/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/common/plugin_tester/main.go -------------------------------------------------------------------------------- /packer_test/common/plugin_tester/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/common/plugin_tester/version/version.go -------------------------------------------------------------------------------- /packer_test/common/suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/common/suite.go -------------------------------------------------------------------------------- /packer_test/core_tests/local_eval_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/core_tests/local_eval_test.go -------------------------------------------------------------------------------- /packer_test/core_tests/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/core_tests/suite_test.go -------------------------------------------------------------------------------- /packer_test/dag_tests/malformed_dep_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/dag_tests/malformed_dep_test.go -------------------------------------------------------------------------------- /packer_test/dag_tests/mix_data_locals_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/dag_tests/mix_data_locals_test.go -------------------------------------------------------------------------------- /packer_test/dag_tests/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/dag_tests/suite_test.go -------------------------------------------------------------------------------- /packer_test/plugin_tests/gob_pb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/plugin_tests/gob_pb_test.go -------------------------------------------------------------------------------- /packer_test/plugin_tests/gob_test_suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/plugin_tests/gob_test_suite.go -------------------------------------------------------------------------------- /packer_test/plugin_tests/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/plugin_tests/init_test.go -------------------------------------------------------------------------------- /packer_test/plugin_tests/install_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/plugin_tests/install_test.go -------------------------------------------------------------------------------- /packer_test/plugin_tests/loading_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/plugin_tests/loading_test.go -------------------------------------------------------------------------------- /packer_test/plugin_tests/plugins_remove_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/plugin_tests/plugins_remove_test.go -------------------------------------------------------------------------------- /packer_test/plugin_tests/sample_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/plugin_tests/sample_config.json -------------------------------------------------------------------------------- /packer_test/plugin_tests/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/plugin_tests/suite_test.go -------------------------------------------------------------------------------- /packer_test/plugin_tests/templates/pin_1.0.9.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/plugin_tests/templates/pin_1.0.9.pkr.hcl -------------------------------------------------------------------------------- /packer_test/plugin_tests/templates/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/plugin_tests/templates/simple.json -------------------------------------------------------------------------------- /packer_test/plugin_tests/templates/simple.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/plugin_tests/templates/simple.pkr.hcl -------------------------------------------------------------------------------- /packer_test/provisioner_tests/hcp-sbom/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/provisioner_tests/hcp-sbom/suite_test.go -------------------------------------------------------------------------------- /packer_test/provisioner_tests/shell/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/packer_test/provisioner_tests/shell/suite_test.go -------------------------------------------------------------------------------- /panic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/panic.go -------------------------------------------------------------------------------- /post-processor/artifice/artifact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/artifice/artifact.go -------------------------------------------------------------------------------- /post-processor/artifice/post-processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/artifice/post-processor.go -------------------------------------------------------------------------------- /post-processor/artifice/post-processor.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/artifice/post-processor.hcl2spec.go -------------------------------------------------------------------------------- /post-processor/artifice/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/artifice/version/version.go -------------------------------------------------------------------------------- /post-processor/checksum/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/checksum/LICENSE -------------------------------------------------------------------------------- /post-processor/checksum/artifact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/checksum/artifact.go -------------------------------------------------------------------------------- /post-processor/checksum/post-processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/checksum/post-processor.go -------------------------------------------------------------------------------- /post-processor/checksum/post-processor.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/checksum/post-processor.hcl2spec.go -------------------------------------------------------------------------------- /post-processor/checksum/post-processor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/checksum/post-processor_test.go -------------------------------------------------------------------------------- /post-processor/checksum/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/checksum/version/version.go -------------------------------------------------------------------------------- /post-processor/compress/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/compress/LICENSE -------------------------------------------------------------------------------- /post-processor/compress/artifact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/compress/artifact.go -------------------------------------------------------------------------------- /post-processor/compress/artifact_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/compress/artifact_test.go -------------------------------------------------------------------------------- /post-processor/compress/benchmark.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/compress/benchmark.go -------------------------------------------------------------------------------- /post-processor/compress/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/compress/notes.txt -------------------------------------------------------------------------------- /post-processor/compress/post-processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/compress/post-processor.go -------------------------------------------------------------------------------- /post-processor/compress/post-processor.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/compress/post-processor.hcl2spec.go -------------------------------------------------------------------------------- /post-processor/compress/post-processor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/compress/post-processor_test.go -------------------------------------------------------------------------------- /post-processor/compress/tar_fix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/compress/tar_fix.go -------------------------------------------------------------------------------- /post-processor/compress/tar_fix_go110.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/compress/tar_fix_go110.go -------------------------------------------------------------------------------- /post-processor/compress/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/compress/version/version.go -------------------------------------------------------------------------------- /post-processor/manifest/artifact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/manifest/artifact.go -------------------------------------------------------------------------------- /post-processor/manifest/post-processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/manifest/post-processor.go -------------------------------------------------------------------------------- /post-processor/manifest/post-processor.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/manifest/post-processor.hcl2spec.go -------------------------------------------------------------------------------- /post-processor/manifest/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/manifest/version/version.go -------------------------------------------------------------------------------- /post-processor/shell-local/post-processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/shell-local/post-processor.go -------------------------------------------------------------------------------- /post-processor/shell-local/post-processor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/shell-local/post-processor_test.go -------------------------------------------------------------------------------- /post-processor/shell-local/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/post-processor/shell-local/version/version.go -------------------------------------------------------------------------------- /provisioner/breakpoint/provisioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/breakpoint/provisioner.go -------------------------------------------------------------------------------- /provisioner/breakpoint/provisioner.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/breakpoint/provisioner.hcl2spec.go -------------------------------------------------------------------------------- /provisioner/breakpoint/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/breakpoint/version/version.go -------------------------------------------------------------------------------- /provisioner/file/provisioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/file/provisioner.go -------------------------------------------------------------------------------- /provisioner/file/provisioner.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/file/provisioner.hcl2spec.go -------------------------------------------------------------------------------- /provisioner/file/provisioner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/file/provisioner_test.go -------------------------------------------------------------------------------- /provisioner/file/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/file/version/version.go -------------------------------------------------------------------------------- /provisioner/hcp-sbom/provisioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/hcp-sbom/provisioner.go -------------------------------------------------------------------------------- /provisioner/hcp-sbom/provisioner.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/hcp-sbom/provisioner.hcl2spec.go -------------------------------------------------------------------------------- /provisioner/hcp-sbom/provisioner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/hcp-sbom/provisioner_test.go -------------------------------------------------------------------------------- /provisioner/hcp-sbom/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/hcp-sbom/validate.go -------------------------------------------------------------------------------- /provisioner/hcp-sbom/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/hcp-sbom/version/version.go -------------------------------------------------------------------------------- /provisioner/powershell/execution_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/powershell/execution_policy.go -------------------------------------------------------------------------------- /provisioner/powershell/execution_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/powershell/execution_policy_test.go -------------------------------------------------------------------------------- /provisioner/powershell/executionpolicy_enumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/powershell/executionpolicy_enumer.go -------------------------------------------------------------------------------- /provisioner/powershell/provisioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/powershell/provisioner.go -------------------------------------------------------------------------------- /provisioner/powershell/provisioner.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/powershell/provisioner.hcl2spec.go -------------------------------------------------------------------------------- /provisioner/powershell/provisioner_acc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/powershell/provisioner_acc_test.go -------------------------------------------------------------------------------- /provisioner/powershell/provisioner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/powershell/provisioner_test.go -------------------------------------------------------------------------------- /provisioner/powershell/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/powershell/version/version.go -------------------------------------------------------------------------------- /provisioner/shell-local/provisioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/shell-local/provisioner.go -------------------------------------------------------------------------------- /provisioner/shell-local/provisioner_acc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/shell-local/provisioner_acc_test.go -------------------------------------------------------------------------------- /provisioner/shell-local/provisioner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/shell-local/provisioner_test.go -------------------------------------------------------------------------------- /provisioner/shell-local/test-fixtures/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/shell-local/test-fixtures/script.sh -------------------------------------------------------------------------------- /provisioner/shell-local/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/shell-local/version/version.go -------------------------------------------------------------------------------- /provisioner/shell/provisioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/shell/provisioner.go -------------------------------------------------------------------------------- /provisioner/shell/provisioner.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/shell/provisioner.hcl2spec.go -------------------------------------------------------------------------------- /provisioner/shell/provisioner_acc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/shell/provisioner_acc_test.go -------------------------------------------------------------------------------- /provisioner/shell/provisioner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/shell/provisioner_test.go -------------------------------------------------------------------------------- /provisioner/shell/test-fixtures/shell-provisioner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/shell/test-fixtures/shell-provisioner.txt -------------------------------------------------------------------------------- /provisioner/shell/unix_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/shell/unix_reader.go -------------------------------------------------------------------------------- /provisioner/shell/unix_reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/shell/unix_reader_test.go -------------------------------------------------------------------------------- /provisioner/shell/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/shell/version/version.go -------------------------------------------------------------------------------- /provisioner/sleep/provisioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/sleep/provisioner.go -------------------------------------------------------------------------------- /provisioner/sleep/provisioner.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/sleep/provisioner.hcl2spec.go -------------------------------------------------------------------------------- /provisioner/sleep/provisioner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/sleep/provisioner_test.go -------------------------------------------------------------------------------- /provisioner/sleep/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/sleep/version/version.go -------------------------------------------------------------------------------- /provisioner/windows-restart/provisioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/windows-restart/provisioner.go -------------------------------------------------------------------------------- /provisioner/windows-restart/provisioner.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/windows-restart/provisioner.hcl2spec.go -------------------------------------------------------------------------------- /provisioner/windows-restart/provisioner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/windows-restart/provisioner_test.go -------------------------------------------------------------------------------- /provisioner/windows-restart/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/windows-restart/version/version.go -------------------------------------------------------------------------------- /provisioner/windows-shell/provisioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/windows-shell/provisioner.go -------------------------------------------------------------------------------- /provisioner/windows-shell/provisioner.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/windows-shell/provisioner.hcl2spec.go -------------------------------------------------------------------------------- /provisioner/windows-shell/provisioner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/windows-shell/provisioner_test.go -------------------------------------------------------------------------------- /provisioner/windows-shell/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/provisioner/windows-shell/version/version.go -------------------------------------------------------------------------------- /scripts/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/scripts/build.ps1 -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/codesign_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/scripts/codesign_example.sh -------------------------------------------------------------------------------- /scripts/dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/scripts/dist.sh -------------------------------------------------------------------------------- /scripts/generate-plugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/scripts/generate-plugins.go -------------------------------------------------------------------------------- /scripts/off_gopath.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/scripts/off_gopath.sh -------------------------------------------------------------------------------- /scripts/prepare_changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/scripts/prepare_changelog.sh -------------------------------------------------------------------------------- /scripts/sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/scripts/sign.sh -------------------------------------------------------------------------------- /scripts/sort-md-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/scripts/sort-md-list.py -------------------------------------------------------------------------------- /scripts/vagrant-freebsd-priv-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/scripts/vagrant-freebsd-priv-config.sh -------------------------------------------------------------------------------- /scripts/vagrant-freebsd-unpriv-bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/scripts/vagrant-freebsd-unpriv-bootstrap.sh -------------------------------------------------------------------------------- /scripts/vagrant-linux-priv-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/scripts/vagrant-linux-priv-config.sh -------------------------------------------------------------------------------- /scripts/vagrant-linux-priv-go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/scripts/vagrant-linux-priv-go.sh -------------------------------------------------------------------------------- /scripts/vagrant-linux-unpriv-bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/scripts/vagrant-linux-unpriv-bootstrap.sh -------------------------------------------------------------------------------- /tty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/tty.go -------------------------------------------------------------------------------- /tty_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/tty_solaris.go -------------------------------------------------------------------------------- /version/VERSION: -------------------------------------------------------------------------------- 1 | 1.14.4-dev 2 | -------------------------------------------------------------------------------- /version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/version/version.go -------------------------------------------------------------------------------- /website/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/.editorconfig -------------------------------------------------------------------------------- /website/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/.env -------------------------------------------------------------------------------- /website/.env.production: -------------------------------------------------------------------------------- 1 | HASHI_ENV=production 2 | -------------------------------------------------------------------------------- /website/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/.eslintrc.js -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/.husky/pre-commit: -------------------------------------------------------------------------------- 1 | cd website 2 | 3 | npx next-hashicorp precommit -------------------------------------------------------------------------------- /website/.nvmrc: -------------------------------------------------------------------------------- 1 | v22 2 | -------------------------------------------------------------------------------- /website/.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/.stylelintrc.js -------------------------------------------------------------------------------- /website/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/Dockerfile -------------------------------------------------------------------------------- /website/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/LICENSE.md -------------------------------------------------------------------------------- /website/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/Makefile -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/README.md -------------------------------------------------------------------------------- /website/content/community-plugins.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/community-plugins.mdx -------------------------------------------------------------------------------- /website/content/docs/builders/community-supported.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/builders/community-supported.mdx -------------------------------------------------------------------------------- /website/content/docs/builders/file.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/builders/file.mdx -------------------------------------------------------------------------------- /website/content/docs/builders/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/builders/index.mdx -------------------------------------------------------------------------------- /website/content/docs/builders/null.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/builders/null.mdx -------------------------------------------------------------------------------- /website/content/docs/commands/build.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/commands/build.mdx -------------------------------------------------------------------------------- /website/content/docs/commands/console.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/commands/console.mdx -------------------------------------------------------------------------------- /website/content/docs/commands/fix.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/commands/fix.mdx -------------------------------------------------------------------------------- /website/content/docs/commands/fmt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/commands/fmt.mdx -------------------------------------------------------------------------------- /website/content/docs/commands/hcl2_upgrade.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/commands/hcl2_upgrade.mdx -------------------------------------------------------------------------------- /website/content/docs/commands/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/commands/index.mdx -------------------------------------------------------------------------------- /website/content/docs/commands/init.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/commands/init.mdx -------------------------------------------------------------------------------- /website/content/docs/commands/inspect.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/commands/inspect.mdx -------------------------------------------------------------------------------- /website/content/docs/commands/plugins/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/commands/plugins/index.mdx -------------------------------------------------------------------------------- /website/content/docs/commands/plugins/install.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/commands/plugins/install.mdx -------------------------------------------------------------------------------- /website/content/docs/commands/plugins/installed.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/commands/plugins/installed.mdx -------------------------------------------------------------------------------- /website/content/docs/commands/plugins/remove.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/commands/plugins/remove.mdx -------------------------------------------------------------------------------- /website/content/docs/commands/plugins/required.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/commands/plugins/required.mdx -------------------------------------------------------------------------------- /website/content/docs/commands/validate.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/commands/validate.mdx -------------------------------------------------------------------------------- /website/content/docs/communicators/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/communicators/index.mdx -------------------------------------------------------------------------------- /website/content/docs/communicators/ssh.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/communicators/ssh.mdx -------------------------------------------------------------------------------- /website/content/docs/communicators/winrm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/communicators/winrm.mdx -------------------------------------------------------------------------------- /website/content/docs/community-tools.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/community-tools.mdx -------------------------------------------------------------------------------- /website/content/docs/configure.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/configure.mdx -------------------------------------------------------------------------------- /website/content/docs/datasources/hcp/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/datasources/hcp/index.mdx -------------------------------------------------------------------------------- /website/content/docs/datasources/http.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/datasources/http.mdx -------------------------------------------------------------------------------- /website/content/docs/datasources/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/datasources/index.mdx -------------------------------------------------------------------------------- /website/content/docs/debugging.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/debugging.mdx -------------------------------------------------------------------------------- /website/content/docs/hcp/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/hcp/index.mdx -------------------------------------------------------------------------------- /website/content/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/index.mdx -------------------------------------------------------------------------------- /website/content/docs/intro/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/intro/index.mdx -------------------------------------------------------------------------------- /website/content/docs/intro/use-cases.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/intro/use-cases.mdx -------------------------------------------------------------------------------- /website/content/docs/intro/why.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/intro/why.mdx -------------------------------------------------------------------------------- /website/content/docs/partnerships.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/partnerships.mdx -------------------------------------------------------------------------------- /website/content/docs/plugins/creation/hcp-support.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/plugins/creation/hcp-support.mdx -------------------------------------------------------------------------------- /website/content/docs/plugins/creation/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/plugins/creation/index.mdx -------------------------------------------------------------------------------- /website/content/docs/plugins/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/plugins/index.mdx -------------------------------------------------------------------------------- /website/content/docs/plugins/install.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/plugins/install.mdx -------------------------------------------------------------------------------- /website/content/docs/post-processors/artifice.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/post-processors/artifice.mdx -------------------------------------------------------------------------------- /website/content/docs/post-processors/checksum.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/post-processors/checksum.mdx -------------------------------------------------------------------------------- /website/content/docs/post-processors/compress.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/post-processors/compress.mdx -------------------------------------------------------------------------------- /website/content/docs/post-processors/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/post-processors/index.mdx -------------------------------------------------------------------------------- /website/content/docs/post-processors/manifest.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/post-processors/manifest.mdx -------------------------------------------------------------------------------- /website/content/docs/post-processors/shell-local.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/post-processors/shell-local.mdx -------------------------------------------------------------------------------- /website/content/docs/provisioners/breakpoint.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/provisioners/breakpoint.mdx -------------------------------------------------------------------------------- /website/content/docs/provisioners/file.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/provisioners/file.mdx -------------------------------------------------------------------------------- /website/content/docs/provisioners/hcp-sbom.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/provisioners/hcp-sbom.mdx -------------------------------------------------------------------------------- /website/content/docs/provisioners/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/provisioners/index.mdx -------------------------------------------------------------------------------- /website/content/docs/provisioners/powershell.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/provisioners/powershell.mdx -------------------------------------------------------------------------------- /website/content/docs/provisioners/shell-local.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/provisioners/shell-local.mdx -------------------------------------------------------------------------------- /website/content/docs/provisioners/shell.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/provisioners/shell.mdx -------------------------------------------------------------------------------- /website/content/docs/provisioners/windows-restart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/provisioners/windows-restart.mdx -------------------------------------------------------------------------------- /website/content/docs/provisioners/windows-shell.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/provisioners/windows-shell.mdx -------------------------------------------------------------------------------- /website/content/docs/release-notes/v1_11.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/release-notes/v1_11.mdx -------------------------------------------------------------------------------- /website/content/docs/release-notes/v1_12.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/release-notes/v1_12.mdx -------------------------------------------------------------------------------- /website/content/docs/release-notes/v1_13.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/release-notes/v1_13.mdx -------------------------------------------------------------------------------- /website/content/docs/templates/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/templates/index.mdx -------------------------------------------------------------------------------- /website/content/docs/templates/json_to_hcl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/templates/json_to_hcl.mdx -------------------------------------------------------------------------------- /website/content/docs/terminology.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/terminology.mdx -------------------------------------------------------------------------------- /website/content/docs/upgrade/v1_11.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/upgrade/v1_11.mdx -------------------------------------------------------------------------------- /website/content/docs/upgrade/v1_12.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/upgrade/v1_12.mdx -------------------------------------------------------------------------------- /website/content/docs/upgrade/v1_13.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/docs/upgrade/v1_13.mdx -------------------------------------------------------------------------------- /website/content/guides/1.7-plugin-upgrade.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/guides/1.7-plugin-upgrade.mdx -------------------------------------------------------------------------------- /website/content/guides/1.7-template-upgrade.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/guides/1.7-template-upgrade.mdx -------------------------------------------------------------------------------- /website/content/guides/hcl/component-object-spec.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/guides/hcl/component-object-spec.mdx -------------------------------------------------------------------------------- /website/content/guides/hcl/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/guides/hcl/index.mdx -------------------------------------------------------------------------------- /website/content/guides/hcl/variables.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/guides/hcl/variables.mdx -------------------------------------------------------------------------------- /website/content/guides/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/guides/index.mdx -------------------------------------------------------------------------------- /website/content/guides/packer-on-cicd/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/guides/packer-on-cicd/index.mdx -------------------------------------------------------------------------------- /website/content/guides/packer-on-cicd/trigger-tfe.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/guides/packer-on-cicd/trigger-tfe.mdx -------------------------------------------------------------------------------- /website/content/partials/commands/except.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/partials/commands/except.mdx -------------------------------------------------------------------------------- /website/content/partials/commands/only.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/partials/commands/only.mdx -------------------------------------------------------------------------------- /website/content/partials/datasource/null/Config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/partials/datasource/null/Config.mdx -------------------------------------------------------------------------------- /website/content/partials/from-1.5/beta-hcl2-note.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/partials/from-1.5/beta-hcl2-note.mdx -------------------------------------------------------------------------------- /website/content/partials/guides/hcl2-beta-note.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/partials/guides/hcl2-beta-note.mdx -------------------------------------------------------------------------------- /website/content/partials/path/separator-note.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/partials/path/separator-note.mdx -------------------------------------------------------------------------------- /website/content/partials/plugins/plugin-location.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/partials/plugins/plugin-location.mdx -------------------------------------------------------------------------------- /website/content/plugins/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/plugins/index.mdx -------------------------------------------------------------------------------- /website/content/security.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/content/security.mdx -------------------------------------------------------------------------------- /website/data/docs-nav-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/data/docs-nav-data.json -------------------------------------------------------------------------------- /website/data/guides-nav-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/data/guides-nav-data.json -------------------------------------------------------------------------------- /website/data/plugins-manifest.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /website/data/plugins-nav-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/data/plugins-nav-data.json -------------------------------------------------------------------------------- /website/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/package-lock.json -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/package.json -------------------------------------------------------------------------------- /website/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/prettier.config.js -------------------------------------------------------------------------------- /website/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/favicon.ico -------------------------------------------------------------------------------- /website/public/files/press-kit.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/files/press-kit.zip -------------------------------------------------------------------------------- /website/public/ie-warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/ie-warning.js -------------------------------------------------------------------------------- /website/public/img/branded-cta/cta-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/img/branded-cta/cta-right.svg -------------------------------------------------------------------------------- /website/public/img/docs/atlas-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/img/docs/atlas-workflow.png -------------------------------------------------------------------------------- /website/public/img/docs/packer-ecosystem-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/img/docs/packer-ecosystem-diagram.png -------------------------------------------------------------------------------- /website/public/img/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/img/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /website/public/img/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/img/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /website/public/img/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/img/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /website/public/img/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/img/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /website/public/img/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/img/favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /website/public/img/guides/teamcity_build_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/img/guides/teamcity_build_log.png -------------------------------------------------------------------------------- /website/public/img/hcp-callout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/img/hcp-callout.svg -------------------------------------------------------------------------------- /website/public/img/homepage-hero/hero-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/img/homepage-hero/hero-right.svg -------------------------------------------------------------------------------- /website/public/img/integrations/aws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/img/integrations/aws.svg -------------------------------------------------------------------------------- /website/public/img/integrations/azure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/img/integrations/azure.svg -------------------------------------------------------------------------------- /website/public/img/integrations/digitalocean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/img/integrations/digitalocean.svg -------------------------------------------------------------------------------- /website/public/img/integrations/docker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/img/integrations/docker.svg -------------------------------------------------------------------------------- /website/public/img/integrations/google-cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/img/integrations/google-cloud.svg -------------------------------------------------------------------------------- /website/public/img/integrations/vmware.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/img/integrations/vmware.svg -------------------------------------------------------------------------------- /website/public/img/logo-hashicorp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/img/logo-hashicorp.svg -------------------------------------------------------------------------------- /website/public/img/logo-packer-padded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/img/logo-packer-padded.svg -------------------------------------------------------------------------------- /website/public/img/logo-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/img/logo-text.svg -------------------------------------------------------------------------------- /website/public/img/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/img/og-image.png -------------------------------------------------------------------------------- /website/public/img/packer-signed-urls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/img/packer-signed-urls.png -------------------------------------------------------------------------------- /website/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/public/robots.txt -------------------------------------------------------------------------------- /website/redirects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/redirects.js -------------------------------------------------------------------------------- /website/scripts/should-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/scripts/should-build.sh -------------------------------------------------------------------------------- /website/scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/scripts/tsconfig.json -------------------------------------------------------------------------------- /website/scripts/website-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/scripts/website-build.sh -------------------------------------------------------------------------------- /website/scripts/website-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/scripts/website-start.sh -------------------------------------------------------------------------------- /website/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer/HEAD/website/vercel.json --------------------------------------------------------------------------------