Skip to content

Commit

Permalink
update static ipconfig for private link
Browse files Browse the repository at this point in the history
  • Loading branch information
baoduy committed Aug 12, 2024
1 parent 8e6d6f4 commit 07fe99f
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/VNet/PrivateEndpoint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,20 @@ export default ({
},
]
: undefined,
ipConfigurations: privateIpAddress
? [
{
name: `${name}-ipconfig`,
groupId: linkServiceGroupIds[0],
memberName: linkServiceGroupIds[0],
privateIPAddress: privateIpAddress,
},
]
: undefined,
privateLinkServiceConnections: [
{
groupIds: linkServiceGroupIds,
name: `${name}-conn`,
groupIds: linkServiceGroupIds,
privateLinkServiceId: resourceInfo.id,
},
],
Expand Down

0 comments on commit 07fe99f

Please sign in to comment.