Skip to content

Commit 09a4562

Browse files
committed
Fix missing tags
1 parent 722d162 commit 09a4562

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

e2e/shared_infra.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,8 @@ func ensureSharedVNet(ctx context.Context, rg, location string) error {
113113
// is a full PUT, so omitting Subnets would delete them.
114114
existing.Properties.AddressSpace.AddressPrefixes = prefixes
115115
poller, updateErr := config.Azure.VNet.BeginCreateOrUpdate(ctx, rg, SharedVNetName, armnetwork.VirtualNetwork{
116-
Location: existing.Location,
116+
Location: existing.Location,
117+
Tags: existing.Tags,
117118
Properties: existing.Properties,
118119
}, nil)
119120
if updateErr != nil {

0 commit comments

Comments
 (0)