Skip to content

Commit

Permalink
Merge pull request #65 from baoduy/develop
Browse files Browse the repository at this point in the history
update static ipconfig for private link
  • Loading branch information
baoduy authored Aug 12, 2024
2 parents 3afa06d + 07fe99f commit 35237e9
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 35237e9

Please sign in to comment.