Skip to content

Commit 5c65e0b

Browse files
committed
update dns endpoints
1 parent b26d1da commit 5c65e0b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

infra/main.bicep

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1343,11 +1343,11 @@ module avmAppConfig 'br/public:avm/res/app-configuration/configuration-store:0.6
13431343
}
13441344
{
13451345
name: 'APP_STORAGE_BLOB_URL'
1346-
value: avmStorageAccount.outputs.serviceEndpoints.blob //TODO: replace with actual blob URL
1346+
value: replace(avmStorageAccount.outputs.serviceEndpoints.blob, 'blob.core.windows.net', 'privatelink.blob.core.windows.net') //TODO: replace with actual blob URL
13471347
}
13481348
{
13491349
name: 'APP_STORAGE_QUEUE_URL'
1350-
value: avmStorageAccount.outputs.serviceEndpoints.queue //TODO: replace with actual queue URL
1350+
value: replace(avmStorageAccount.outputs.serviceEndpoints.queue, 'queue.core.windows.net', 'privatelink.queue.core.windows.net') //TODO: replace with actual queue URL
13511351
}
13521352
{
13531353
name: 'APP_AI_PROJECT_CONN_STR'
@@ -1356,7 +1356,7 @@ module avmAppConfig 'br/public:avm/res/app-configuration/configuration-store:0.6
13561356
}
13571357
{
13581358
name: 'APP_COSMOS_CONNSTR'
1359-
value: avmCosmosDB.outputs.primaryReadWriteConnectionString
1359+
value: replace(avmCosmosDB.outputs.primaryReadWriteConnectionString, 'mongo.cosmos.azure.com', 'privatelink.mongo.cosmos.azure.com')
13601360
}
13611361
]
13621362

0 commit comments

Comments
 (0)