plugins/boundary/mains/azure: update dependency (#5464)

v0.2.0 of the Azure plugin adds support for Virtual Machine
Scale Sets (VMSS) in addition to Virtual Machines.
pull/5565/head
Johan Brandhorst-Satzkorn 1 year ago committed by GitHub
parent 262693f47c
commit 3d2fa8b9d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -4,6 +4,11 @@ Canonical reference for changes, improvements, and bugfixes for Boundary.
## Next
### New and Improved
* Adds support for Azure Virtual Machine Scale Sets in the Azure plugin
([PR](https://github.com/hashicorp/boundary-plugin-azure/pull/22)).
## 0.19.0 (2025/02/10)
### New and Improved

@ -3,7 +3,7 @@ module github.com/hashicorp/boundary/plugins/boundary/mains/azure
go 1.23.0
require (
github.com/hashicorp/boundary-plugin-azure v0.1.3
github.com/hashicorp/boundary-plugin-azure v0.2.0
github.com/hashicorp/boundary/sdk v0.0.39
)
@ -54,6 +54,7 @@ require (
golang.org/x/net v0.34.0 // indirect
golang.org/x/oauth2 v0.11.0 // indirect
golang.org/x/sys v0.29.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/text v0.21.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b // indirect

@ -154,8 +154,8 @@ github.com/google/uuid v1.3.1 h1:KjJaJ9iWZ3jOFZIf1Lqf4laDRCasjl0BCmnEGxkdLb4=
github.com/google/uuid v1.3.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
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-azure v0.1.3 h1:tD861pyIOMts6YCIir/luV3qjukxAfw1wSgu5gFgxMg=
github.com/hashicorp/boundary-plugin-azure v0.1.3/go.mod h1:7ZXsodjPSjWN32dpgzvavgqBiGMWfrlg2DDExpOpn34=
github.com/hashicorp/boundary-plugin-azure v0.2.0 h1:JmsJamOb6IEWodQ7CJW9wJz09o+Q2fk1Cm0GnNruQuQ=
github.com/hashicorp/boundary-plugin-azure v0.2.0/go.mod h1:V0zTGIqZQNYl9fl7q+NX13F4AyJ3pMGVlfopFfZr9O0=
github.com/hashicorp/boundary/sdk v0.0.39 h1:+sucyf+BV12lVUQMGIwwCO2lbS0Cq7TrEAn2FuD9Fbo=
github.com/hashicorp/boundary/sdk v0.0.39/go.mod h1:lGNs7t1tDnKmxA3kRK3ISU/rFe+5H1oKoClUMKMQxME=
github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
@ -385,6 +385,8 @@ golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJ
golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ=
golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=

Loading…
Cancel
Save