Skip to content

Commit

Permalink
docs: add namespace migration guide (#112)
Browse files Browse the repository at this point in the history
Adds a small migration guide for existing users still using the previous
hashicorp namespace.
  • Loading branch information
jooola authored Nov 7, 2023
1 parent f83c8e9 commit dd3d327
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
2 changes: 0 additions & 2 deletions .go-version

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ binary file can be found in the root directory.
To install the compiled plugin, please follow the official Packer documentation
on [installing a plugin](https://www.packer.io/docs/extending/plugins/#installing-plugins).

### Configuration
## Configuration

For more information on how to configure the plugin, please read the
documentation located in the [`docs/`](docs) directory.
Expand Down
16 changes: 16 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,22 @@ Alternatively, you can use `packer plugins install` to manage installation of th
$ packer plugins install github.com/hetznercloud/hcloud
```

#### Migrate from `github.com/hashicorp/hcloud`

On the 7 November 2023, the Packer plugin source moved from `github.com/hashicorp/hcloud` to `github.com/hetznercloud/hcloud`, make sure to update your Packer configuration with the new source:

```patch
packer {
required_plugins {
hcloud = {
- source = "github.com/hashicorp/hcloud"
+ source = "github.com/hetznercloud/hcloud"
version = ">= 1.1.1"
}
}
}
```

### Components

#### Builders
Expand Down

0 comments on commit dd3d327

Please sign in to comment.