packer-plugin-sshkey
packer-plugin-sshkey copied to clipboard
Packer plugin used to generate SSH keys.
When given input like sshkey.pkr.hcl ```hcl packer { required_plugins { sshkey = { version = ">= 0.1.0" source = "github.com/ivoronin/sshkey" } } } data "sshkey" "packer" {} source "null" "test"...
Bumps [github.com/hashicorp/packer-plugin-sdk](https://github.com/hashicorp/packer-plugin-sdk) from 0.3.1 to 0.3.2. Release notes Sourced from github.com/hashicorp/packer-plugin-sdk's releases. v0.3.2 What's Changed Exciting New Features 🎉 sdk: Bump SDK to Go 1.18 by @nywilken in hashicorp/packer-plugin-sdk#121 Provision...
Bumps [github.com/hashicorp/hcl/v2](https://github.com/hashicorp/hcl) from 2.13.0 to 2.14.0. Release notes Sourced from github.com/hashicorp/hcl/v2's releases. v2.14.0 Enhancements ext/typeexpr: Added support for optional object attributes to TypeConstraint. Attributes can be wrapped in the special...
Bumps [github.com/zclconf/go-cty](https://github.com/zclconf/go-cty) from 1.10.0 to 1.11.0. Changelog Sourced from github.com/zclconf/go-cty's changelog. 1.11.0 (August 22, 2022) Upgrade Notes This release contains some changes to some aspects of the API that are...
Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.16.0 to 0.17.0. Commits 9d2ee97 ssh: implement strict KEX protocol changes 4e5a261 ssh: close net.Conn on all NewServerConn errors 152cdb1 x509roots/fallback: update bundle fdfe1f8 ssh: defer channel...
- **go.mod: use full source name for module** - **GNUmakefile: make dev uses packer for install**
Version mismatch on packer build ``` $ packer init alt-linux.pkr.hcl 2024/03/12 15:53:03 [INFO] Packer version: 1.11.0-alpha [go1.21.8 linux amd64] 2024/03/12 15:53:03 [INFO] PACKER_CONFIG env var not set; checking the default...
Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.16.0 to 0.21.0. Commits 7067223 go.mod: update golang.org/x dependencies 0d2316b ssh/test: work around for TestCiphers failures on macOS 0aab8d0 all: update go.mod x/net dependency 5bead59 ocsp: don't...
So, in my Packer template, I set `type = "ed25519"`. The build failed during Ansible provisioning with the following error: ``` virtualbox-iso.helpdesk: TASK [Gathering Facts] ********************************************************* virtualbox-iso.helpdesk: fatal: [default]: UNREACHABLE!...
I think in the main README we should probably mention that you should use `packer validate test.pkr.hcl -evaluate-datasources` with this plugin. Even though its a Packer problem, make it easy...