File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
azure-nextgen-ts-webapp-privateendpoint-vnet-injection Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ const backendApp = new web.WebApp("backendApp", {
5151 } ,
5252} ) ;
5353
54- export const backendURL = backendApp . defaultHostName
54+ export const backendURL = backendApp . defaultHostName ;
5555
5656// Setup frontend app
5757const frontendName = pulumi . interpolate `frontend${ rand . result } ` ;
@@ -66,7 +66,7 @@ const frontendApp = new web.WebApp("frontendApp", {
6666 } ,
6767} ) ;
6868
69- export const frontEndURL = frontendApp . defaultHostName
69+ export const frontEndURL = frontendApp . defaultHostName ;
7070
7171// Setup a vnet
7272const virtualNetworkCIDR = config . get ( "virtualNetworkCIDR" ) || "10.200.0.0/16" ;
@@ -124,7 +124,7 @@ const privateDNSZoneGroup = new network.PrivateDnsZoneGroup("privateDnsZoneGroup
124124 resourceGroupName : resourceGroup . name ,
125125} ) ;
126126
127- export const privateEndpointURL = privateDNSZoneGroup . privateDnsZoneConfigs . apply ( zoneConfigs => zoneConfigs ! [ 0 ] . recordSets [ 0 ] . fqdn )
127+ export const privateEndpointURL = privateDNSZoneGroup . privateDnsZoneConfigs . apply ( zoneConfigs => zoneConfigs ! [ 0 ] . recordSets [ 0 ] . fqdn ) ;
128128
129129const virtualNetworkLink = new pvtnetwork . VirtualNetworkLink ( "virtualNetworkLink" , {
130130 location : "global" ,
You can’t perform that action at this time.
0 commit comments