Skip to content

Commit d363c00

Browse files
plugins/azure: update to v0.2.0 (#5564)
v0.2.0 of the Azure plugin adds support for Azure VMSS instances.
1 parent 6ec8c35 commit d363c00

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ Canonical reference for changes, improvements, and bugfixes for Boundary.
44

55
## Next
66

7+
### New and Improved
8+
9+
* Adds support for Azure Virtual Machine Scale Sets in the Azure plugin
10+
([PR](https://github.com/hashicorp/boundary-plugin-azure/pull/22)).
11+
712
## 0.19.0 (2025/02/10)
813
### New and Improved
914

plugins/boundary/mains/azure/go.mod

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/hashicorp/boundary/plugins/boundary/mains/azure
33
go 1.23.0
44

55
require (
6-
github.com/hashicorp/boundary-plugin-azure v0.1.3
6+
github.com/hashicorp/boundary-plugin-azure v0.2.0
77
github.com/hashicorp/boundary/sdk v0.0.39
88
)
99

@@ -54,6 +54,7 @@ require (
5454
golang.org/x/crypto v0.31.0 // indirect
5555
golang.org/x/net v0.33.0 // indirect
5656
golang.org/x/oauth2 v0.11.0 // indirect
57+
golang.org/x/sync v0.10.0 // indirect
5758
golang.org/x/sys v0.28.0 // indirect
5859
golang.org/x/text v0.21.0 // indirect
5960
google.golang.org/appengine v1.6.7 // indirect

plugins/boundary/mains/azure/go.sum

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ github.com/google/uuid v1.3.1 h1:KjJaJ9iWZ3jOFZIf1Lqf4laDRCasjl0BCmnEGxkdLb4=
154154
github.com/google/uuid v1.3.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
155155
github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg=
156156
github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk=
157-
github.com/hashicorp/boundary-plugin-azure v0.1.3 h1:tD861pyIOMts6YCIir/luV3qjukxAfw1wSgu5gFgxMg=
158-
github.com/hashicorp/boundary-plugin-azure v0.1.3/go.mod h1:7ZXsodjPSjWN32dpgzvavgqBiGMWfrlg2DDExpOpn34=
157+
github.com/hashicorp/boundary-plugin-azure v0.2.0 h1:JmsJamOb6IEWodQ7CJW9wJz09o+Q2fk1Cm0GnNruQuQ=
158+
github.com/hashicorp/boundary-plugin-azure v0.2.0/go.mod h1:V0zTGIqZQNYl9fl7q+NX13F4AyJ3pMGVlfopFfZr9O0=
159159
github.com/hashicorp/boundary/sdk v0.0.39 h1:+sucyf+BV12lVUQMGIwwCO2lbS0Cq7TrEAn2FuD9Fbo=
160160
github.com/hashicorp/boundary/sdk v0.0.39/go.mod h1:lGNs7t1tDnKmxA3kRK3ISU/rFe+5H1oKoClUMKMQxME=
161161
github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
@@ -387,6 +387,8 @@ golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJ
387387
golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
388388
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
389389
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
390+
golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ=
391+
golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
390392
golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
391393
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
392394
golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=

0 commit comments

Comments
 (0)