You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/bastion/bastion-faq.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -171,9 +171,9 @@ Yes. See [About VM connections and features](vm-about.md#audio).
171
171
172
172
Azure Bastion offers support for file transfer between your target VM and local computer using Bastion and a native RDP or SSH client. At this time, you can’t upload or download files using PowerShell or via the Azure portal. For more information, see [Upload and download files using the native client](vm-upload-download-native.md).
173
173
174
-
### <aname="aadj"></a>Does Bastion hardening work with AADJ VM extension-joined VMs?
174
+
### <aname="aadj"></a>Does Bastion work with Entra ID extension-joined VMs?
175
175
176
-
This feature doesn't work with AADJ VM extension-joined machines using Microsoft Entra users. For more information, see [Sign in to a Windows virtual machine in Azure by using Microsoft Entra ID](../active-directory/devices/howto-vm-sign-in-azure-ad-windows.md#requirements).
176
+
Bastion does work with Entra ID extension-joined VMs for Microsoft Entra users with RDP and SSH on the native client, and SSH only on the portal. Entra ID for RDP on the portal is not yet supported. For more information, see [Sign in to a Windows virtual machine in Azure by using Microsoft Entra ID](../active-directory/devices/howto-vm-sign-in-azure-ad-windows.md#requirements).
177
177
178
178
### <aname="rdscal-compatibility"></a>Is Bastion compatible with VMs set up as RDS session hosts?
Copy file name to clipboardExpand all lines: articles/container-apps/log-streaming.md
+54-54Lines changed: 54 additions & 54 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,14 +62,14 @@ You can stream the system or console logs for your container app. To stream the
62
62
63
63
#### View container app system log stream
64
64
65
-
This example uses the `--tail` argument to display the last 50 system log messages from the container app. Replace the \<placeholders\> with your container app's values.
65
+
This example uses the `--tail` argument to display the last 50 system log messages from the container app. Replace the `<PLACEHOLDERS>` with your container app's values.
66
66
67
67
# [Bash](#tab/bash)
68
68
69
69
```azurecli
70
70
az containerapp logs show \
71
-
--name <ContainerAppName> \
72
-
--resource-group <ResourceGroup> \
71
+
--name <CONTAINER_APP_NAME> \
72
+
--resource-group <RESOURCE_GROUP> \
73
73
--type system \
74
74
--tail 50
75
75
```
@@ -78,22 +78,22 @@ az containerapp logs show \
78
78
79
79
```azurecli
80
80
az containerapp logs show `
81
-
--name <ContainerAppName> `
82
-
--resource-group <ResourceGroup> `
81
+
--name <CONTAINER_APP_NAME> `
82
+
--resource-group <RESOURCE_GROUP> `
83
83
--type system `
84
84
--tail 50
85
85
```
86
86
87
87
---
88
88
89
-
This example displays a continuous live stream of system log messages from the container app using the `--follow` argument. Replace the \<placeholders\> with your container app's values.
89
+
This example displays a continuous live stream of system log messages from the container app using the `--follow` argument. Replace the `<PLACEHOLDERS>` with your container app's values.
90
90
91
91
# [Bash](#tab/bash)
92
92
93
93
```azurecli
94
94
az containerapp logs show \
95
-
--name <ContainerAppName> \
96
-
--resource-group <ResourceGroup> \
95
+
--name <CONTAINER_APP_NAME> \
96
+
--resource-group <RESOURCE_GROUP> \
97
97
--type system \
98
98
--follow
99
99
```
@@ -102,8 +102,8 @@ az containerapp logs show \
102
102
103
103
```azurecli
104
104
az containerapp logs show `
105
-
--name <ContainerAppName> `
106
-
--resource-group <ResourceGroup> `
105
+
--name <CONTAINER_APP_NAME> `
106
+
--resource-group <RESOURCE_GROUP> `
107
107
--type system `
108
108
--follow
109
109
```
@@ -122,63 +122,63 @@ To connect to a container's console log stream in a container app with multiple
122
122
|`--replica`| The replica name in the revision. |
123
123
|`--container`| The container name to connect to. |
124
124
125
-
You can get the revision names with the `az containerapp revision list` command. Replace the \<placeholders\> with your container app's values.
125
+
You can get the revision names with the `az containerapp revision list` command. Replace the `<PLACEHOLDERS>` with your container app's values.
126
126
127
127
# [Bash](#tab/bash)
128
128
129
129
```azurecli
130
130
az containerapp revision list \
131
-
--name <ContainerAppName> \
132
-
--resource-group <ResourceGroup> \
131
+
--name <CONTAINER_APP_NAME> \
132
+
--resource-group <RESOURCE_GROUP> \
133
133
--query "[].name"
134
134
```
135
135
136
136
# [PowerShell](#tab/powershell)
137
137
138
138
```azurecli
139
139
az containerapp revision list `
140
-
--name <ContainerAppName> `
141
-
--resource-group <ResourceGroup> `
140
+
--name <CONTAINER_APP_NAME> `
141
+
--resource-group <RESOURCE_GROUP> `
142
142
--query "[].name"
143
143
```
144
144
145
145
---
146
146
147
-
Use the `az containerapp replica list` command to get the replica and container names. Replace the \<placeholders\> with your container app's values.
147
+
Use the `az containerapp replica list` command to get the replica and container names. Replace the `<PLACEHOLDERS>` with your container app's values.
Live stream the container console using the `az container app show` command with the `--follow` argument. Replace the \<placeholders\> with your container app's values.
171
+
Live stream the container console using the `az container app show` command with the `--follow` argument. Replace the `<PLACEHOLDERS>` with your container app's values.
172
172
173
173
# [Bash](#tab/bash)
174
174
175
175
```azurecli
176
176
az containerapp logs show \
177
-
--name <ContainerAppName> \
178
-
--resource-group <ResourceGroup> \
179
-
--revision <RevisionName> \
180
-
--replica <ReplicaName> \
181
-
--container <ContainerName> \
177
+
--name <CONTAINER_APP_NAME> \
178
+
--resource-group <RESOURCE_GROUP> \
179
+
--revision <REVISION_NAME> \
180
+
--replica <REPLICA_NAME> \
181
+
--container <CONTAINER_NAME> \
182
182
--type console \
183
183
--follow
184
184
```
@@ -187,11 +187,11 @@ az containerapp logs show \
187
187
188
188
```azurecli
189
189
az containerapp logs show `
190
-
--name <ContainerAppName> `
191
-
--resource-group <ResourceGroup> `
192
-
--revision <RevisionName> `
193
-
--replica <ReplicaName> `
194
-
--container <ContainerName> `
190
+
--name <CONTAINER_APP_NAME> `
191
+
--resource-group <RESOURCE_GROUP> `
192
+
--revision <REVISION_NAME> `
193
+
--replica <REPLICA_NAME> `
194
+
--container <CONTAINER_NAME> `
195
195
--type console `
196
196
--follow
197
197
```
@@ -200,17 +200,17 @@ az containerapp logs show `
200
200
201
201
Use `Ctrl-C` or `Cmd-C` to stop the live stream.
202
202
203
-
View the last 50 console log messages using the `az containerapp logs show` command with the `--tail` argument. Replace the \<placeholders\> with your container app's values.
203
+
View the last 50 console log messages using the `az containerapp logs show` command with the `--tail` argument. Replace the `<PLACEHOLDERS>` with your container app's values.
204
204
205
205
# [Bash](#tab/bash)
206
206
207
207
```azurecli
208
208
az containerapp logs show \
209
-
--name <ContainerAppName> \
210
-
--resource-group <ResourceGroup> \
211
-
--revision <RevisionName> \
212
-
--replica <ReplicaName> \
213
-
--container <ContainerName> \
209
+
--name <CONTAINER_APP_NAME> \
210
+
--resource-group <RESOURCE_GROUP> \
211
+
--revision <REVISION_NAME> \
212
+
--replica <REPLICA_NAME> \
213
+
--container <CONTAINER_NAME> \
214
214
--type console \
215
215
--tail 50
216
216
```
@@ -219,11 +219,11 @@ az containerapp logs show \
219
219
220
220
```azurecli
221
221
az containerapp logs show `
222
-
--name <ContainerAppName> `
223
-
--resource-group <ResourceGroup> `
224
-
--revision <RevisionName> `
225
-
--replica <ReplicaName> `
226
-
--container <ContainerName> `
222
+
--name <CONTAINER_APP_NAME> `
223
+
--resource-group <RESOURCE_GROUP> `
224
+
--revision <REVISION_NAME> `
225
+
--replica <REPLICA_NAME> `
226
+
--container <CONTAINER_NAME> `
227
227
--type console `
228
228
--tail 50
229
229
```
@@ -232,47 +232,47 @@ az containerapp logs show `
232
232
233
233
### View environment system log stream
234
234
235
-
Use the following command with the `--follow` argument to view the live system log stream from the Container Apps environment. Replace the \<placeholders\> with your environment values.
235
+
Use the following command with the `--follow` argument to view the live system log stream from the Container Apps environment. Replace the `<PLACEHOLDERS>` with your environment values.
236
236
237
237
# [Bash](#tab/bash)
238
238
239
239
```azurecli
240
240
az containerapp env logs show \
241
-
--name <ContainerAppEnvironmentName> \
242
-
--resource-group <ResourceGroup> \
241
+
--name <ENVIRONMENT_NAME> \
242
+
--resource-group <RESOURCE_GROUP> \
243
243
--follow
244
244
```
245
245
246
246
# [PowerShell](#tab/powershell)
247
247
248
248
```azurecli
249
249
az containerapp env logs show `
250
-
--name <ContainerAppEnvironmentName> `
251
-
--resource-group <ResourceGroup> `
250
+
--name <ENVIRONMENT_NAME> `
251
+
--resource-group <RESOURCE_GROUP> `
252
252
--follow
253
253
```
254
254
255
255
---
256
256
257
257
Use `Ctrl-C` or `Cmd-C` to stop the live stream.
258
258
259
-
This example uses the `--tail` argument to display the last 50 environment system log messages. Replace the \<placeholders\> with your environment values.
259
+
This example uses the `--tail` argument to display the last 50 environment system log messages. Replace the `<PLACEHOLDERS>` with your environment values.
Copy file name to clipboardExpand all lines: articles/data-factory/tutorial-managed-virtual-network-on-premise-sql-server.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -258,6 +258,9 @@ data factory from the resources list.
258
258
> [!NOTE]
259
259
> When deploying your SQL Server on a virtual machine within a virtual network, it is essential to enhance your FQDN by appending **privatelink**. Otherwise, it will be conflicted with other records in the DNS setting. For example, you can simply modify the SQL Server's FQDN from **sqlserver.westus.cloudapp.azure.net** to **sqlserver.privatelink.westus.cloudapp.azure.net**.
260
260
261
+
> [!NOTE]
262
+
> Currently ApplicationIntent and MultiSubnetFailover are not supported in SQL connection properties.
263
+
261
264
8. Create private endpoint.
262
265
263
266
## Create a linked service and test the connection
|Customers can't access FHIR, DICOM, or Medtech through the portal. | October 31, 2024 1:00 pm PST | ARM calls are still operational, and there's no disruption to existing services. | -- |
23
24
|For FHIR instances created after August 19,2024, diagnostic logs aren't available in log analytics workspace. |September 19,2024 9:00 am PST| -- | October 17,2024 9:00 am PST |
24
25
|For FHIR instances created after August 19,2024, in metrics blade - Total requests, Total latency, and Total errors metrics are not being populated. |September 19,2024 9:00 am PST| -- | October 28,2024 9:00 am PST |
25
26
|For FHIR instances created after August 19,2024, changes in private link configuration at the workspace level causes FHIR service to be stuck in 'Updating' state. |September 24,2024 9:00 am PST| Accounts deployed prior to September 27,2024 and facing this issue can follow the steps: <br> 1. Remove private endpoint from the Azure Health Data Services workspace having this issue. On Azure blade, go to Workspace and then click on Networking blade. In networking blade, select existing private link connection and click on 'Remove' <br> 2. Create new private connection to link to the workspace.| September 27,2024 9:00 am PST |
Does Azure IoT Operations offer high availability across multi-node setups?
29
29
answer: Yes, Azure IoT Operations workloads on K3s and HCI/AKS-Arc multi-node clusters support distribution of Azure IoT Operations workloads across multi-nodes setups in the preview version.
30
+
- question: |
31
+
Does Azure Device Registry Preview offer high availability across availability zones and regions?
32
+
answer: For information on high availability across availability zones and regions for ADR, see [Reliability in Azure Device Registry](../../reliability/reliability-device-registry.md).
30
33
- question: |
31
34
Can I migrate my IoT Edge workloads to Azure IoT Operations?
32
35
answer: Currently, there's no documented migration path from IoT Edge to Azure IoT Operations. If you have any feature asks for Azure IoT Operations as part of your migration plans, share your requests on the [Azure IoT Operations public feedback forum](https://feedback.azure.com/d365community/forum/20152d6e-6a76-ee11-8179-000d3a1abe9e).
| COMPX_RACK_RESOURCE_ID | RackID for CompX Rack; repeat for each rack in compute-rack-definitions |
86
-
| COMPX_RACK_SKU | Rack SKU for CompX Rack; repeat for each rack in compute-rack-definitions *See [Operator Nexus Network Cloud SKUs](./reference-operator-nexus-network-cloud-skus-us.md)|
86
+
| COMPX_RACK_SKU | Rack SKU for CompX Rack; repeat for each rack in compute-rack-definitions *See [Operator Nexus Network Cloud SKUs](./reference-operator-nexus-skus.md)|
87
87
| COMPX_RACK_SN | Rack Serial Number for CompX Rack; repeat for each rack in compute-rack-definitions |
88
88
| COMPX_RACK_LOCATION | Rack physical location for CompX Rack; repeat for each rack in compute-rack-definitions |
89
89
| COMPX_SVRY_BMC_PASS | CompX Rack ServerY Baseboard Management Controller (BMC) password; repeat for each rack in compute-rack-definitions and for each server in rack |
0 commit comments