chore(plugins): Update plugin deps (#3266)

* chore(plugins): Update plugin deps
pull/3269/head
Louis Ruch 3 years ago committed by GitHub
parent 1b0330ad8e
commit 07dbaaf052
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -29,6 +29,17 @@ Canonical reference for changes, improvements, and bugfixes for Boundary.
incorrectly being generated for auth token resources, which do not support
versioning. This is technically a breaking change, but it was a no-op option
anyways that there was no reason to be using. It has now been removed.
* Plugins: With the introduction of new plugin services, the Azure and AWS Host plugin
repositories have been renamed to drop the `host` element of the repository name:
- https://github.com/hashicorp/boundary-plugin-host-aws -> https://github.com/hashicorp/boundary-plugin-aws
- https://github.com/hashicorp/boundary-plugin-host-azure -> https://github.com/hashicorp/boundary-plugin-azure
similarly the `plugins/host` package has been renamed to `plugins/boundary`
([PR1](https://github.com/hashicorp/boundary/pull/3262),
[PR2](https://github.com/hashicorp/boundary-plugin-aws/pull/24),
[PR3](https://github.com/hashicorp/boundary-plugin-azure/pull/12),
[PR4](https://github.com/hashicorp/boundary/pull/3266)).
### New and Improved

@ -3,7 +3,7 @@ module github.com/hashicorp/boundary/plugins/boundary/mains/aws
go 1.20
require (
github.com/hashicorp/boundary-plugin-host-aws v0.1.5
github.com/hashicorp/boundary-plugin-aws v0.1.6
github.com/hashicorp/boundary/sdk v0.0.33
)

@ -62,8 +62,8 @@ github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeN
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/hashicorp/boundary-plugin-host-aws v0.1.5 h1:aUsTjY6G2+0Gt0vCW/mtv3+wSA2syKbelM43NirFF/k=
github.com/hashicorp/boundary-plugin-host-aws v0.1.5/go.mod h1:zLDOirPOXdKI+MQ1SZtwia0wmY6zyx3ppFdkmNFIKN4=
github.com/hashicorp/boundary-plugin-aws v0.1.6 h1:JfEWdmz44iJmXvOZYl3UCBbyzP5m73eIlOpSu3jjos4=
github.com/hashicorp/boundary-plugin-aws v0.1.6/go.mod h1:nZFpoJ5OHE21s3tH9zxjOsA4vm8gMbykmeL728a+K4I=
github.com/hashicorp/boundary/sdk v0.0.33 h1:kHaVZ3b9j1QvYlG+vhAgrbXh8/+Rq2qlUIs8fKMQH7k=
github.com/hashicorp/boundary/sdk v0.0.33/go.mod h1:jn9j5mM8v2pOk8aLeJNIszdm7WBf4gRSP68iy8Iu5Q0=
github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=

@ -7,12 +7,12 @@ import (
"fmt"
"os"
awshp "github.com/hashicorp/boundary-plugin-host-aws/plugin"
aws "github.com/hashicorp/boundary-plugin-aws/plugin"
hp "github.com/hashicorp/boundary/sdk/plugins"
)
func main() {
if err := hp.ServePlugin(awshp.NewAwsPlugin()); err != nil {
if err := hp.ServePlugin(aws.NewAwsPlugin()); err != nil {
fmt.Println("Error serving plugin", err)
os.Exit(1)
}

@ -3,7 +3,7 @@ module github.com/hashicorp/boundary/plugins/boundary/mains/azure
go 1.20
require (
github.com/hashicorp/boundary-plugin-host-azure v0.1.2
github.com/hashicorp/boundary-plugin-azure v0.1.3
github.com/hashicorp/boundary/sdk v0.0.33
)

@ -143,8 +143,8 @@ github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm4
github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg=
github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk=
github.com/hashicorp/boundary-plugin-host-azure v0.1.2 h1:nmGcOVIMvngQr5RrCM3pRFA/6rmXHG/NUS7r06SDm40=
github.com/hashicorp/boundary-plugin-host-azure v0.1.2/go.mod h1:hPr+xE6Xktytn9fd+WEZYg1B1D06jivmJZCkac19ejo=
github.com/hashicorp/boundary-plugin-azure v0.1.3 h1:tD861pyIOMts6YCIir/luV3qjukxAfw1wSgu5gFgxMg=
github.com/hashicorp/boundary-plugin-azure v0.1.3/go.mod h1:7ZXsodjPSjWN32dpgzvavgqBiGMWfrlg2DDExpOpn34=
github.com/hashicorp/boundary/sdk v0.0.33 h1:kHaVZ3b9j1QvYlG+vhAgrbXh8/+Rq2qlUIs8fKMQH7k=
github.com/hashicorp/boundary/sdk v0.0.33/go.mod h1:jn9j5mM8v2pOk8aLeJNIszdm7WBf4gRSP68iy8Iu5Q0=
github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=

@ -7,12 +7,12 @@ import (
"fmt"
"os"
azhp "github.com/hashicorp/boundary-plugin-host-azure/plugin"
az "github.com/hashicorp/boundary-plugin-azure/plugin"
hp "github.com/hashicorp/boundary/sdk/plugins"
)
func main() {
if err := hp.ServePlugin(new(azhp.AzurePlugin)); err != nil {
if err := hp.ServePlugin(new(az.AzurePlugin)); err != nil {
fmt.Println("Error serving plugin", err)
os.Exit(1)
}

Loading…
Cancel
Save