File tree Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -821,7 +821,7 @@ def create_app():
821
821
822
822
# Log levels should be one of https://docs.python.org/3/library/logging.html#logging-levels
823
823
# Set root level to WARNING to avoid seeing overly verbose logs from SDKS
824
- logging .basicConfig (level = logging .DEBUG )
824
+ logging .basicConfig (level = logging .WARNING )
825
825
# Set our own logger levels to INFO by default
826
826
app_level = os .getenv ("APP_LOG_LEVEL" , "INFO" )
827
827
app .logger .setLevel (os .getenv ("APP_LOG_LEVEL" , app_level ))
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ Deploying with public access disabled adds additional cost to your deployment. P
51
51
``` shell
52
52
azd env set AZURE_USE_PRIVATE_ENDPOINT true
53
53
azd env set AZURE_USE_VPN_GATEWAY true
54
- azd env set AZURE_PUBLIC_NETWORK_ACCESS Enabled
54
+ azd env set AZURE_PUBLIC_NETWORK_ACCESS Disabled
55
55
azd up
56
56
```
57
57
Original file line number Diff line number Diff line change @@ -234,10 +234,8 @@ module vnet 'br/public:avm/res/network/virtual-network:0.6.1' = {
234
234
{
235
235
name : 'app-int-subnet'
236
236
addressPrefix : '10.0.0.0/21'
237
- //privateEndpointNetworkPolicies: 'Enabled' // TODO: Needed?
238
- //privateLinkServiceNetworkPolicies: 'Enabled' // TODO: Needed?
239
237
networkSecurityGroupResourceId : containerAppsNSG .outputs .resourceId
240
- delegation : 'Microsoft.App/environments' // TODO: Needed?
238
+ delegation : 'Microsoft.App/environments'
241
239
}
242
240
]
243
241
}
Original file line number Diff line number Diff line change 1
1
* Better error when youre trying to run prepdocs and not connected to VPN.
2
+ * Hit up /ping and check that it returns 200 OK. Anything else = no bueno.
3
+ * If they have AZURE_USE_PRIVATE_ENDPOINT and it gets non-200, reminds them to set up VPN.
4
+ * Bring back App Service's subnet
5
+ * Move vnet-y things into network-isolation.bicep
You can’t perform that action at this time.
0 commit comments