Skip to content

Commit 1394647

Browse files
committed
clean up
1 parent 3073c65 commit 1394647

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

articles/machine-learning/how-to-create-compute-instance.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ Where the file *create-instance.yml* is:
126126
* If you're using an __Azure Virtual Network__, specify the **Resource group**, **Virtual network**, and **Subnet** to create the compute instance inside an Azure Virtual Network. You can also select __No public IP__ to prevent the creation of a public IP address, which requires a private link workspace. You must also satisfy these [network requirements](./how-to-secure-training-vnet.md) for virtual network setup.
127127

128128
* If you're using an Azure Machine Learning __managed virtual network__, the compute instance is created inside the managed virtual network. You can also select __No public IP__ to prevent the creation of a public IP address. For more information, see [managed compute with a managed network](./how-to-managed-network-compute.md).
129-
* Allow root access. (preview) $$$ DON'T SEE THIS ANYMORE?
130129

131130
1. Select **Applications** if you want to add custom applications to use on your compute instance, such as RStudio or Posit Workbench. See [Add custom applications such as RStudio or Posit Workbench](#add-custom-applications-such-as-rstudio-or-posit-workbench).
132131
1. Select **Tags** if you want to add additional information to categorize the compute instance.
@@ -440,14 +439,12 @@ You can assign a system- or user-assigned [managed identity](../active-directory
440439

441440
Use SDK V2 to create a compute instance with assign system-assigned managed identity:
442441

443-
$$$ WHAT IS THIS??? IS THIS THE RIGHT CODE?
444442
```python
445443
from azure.ai.ml import MLClient
446444
from azure.identity import ManagedIdentityCredential
447445
client_id = os.environ.get("DEFAULT_IDENTITY_CLIENT_ID", None)
448446
credential = ManagedIdentityCredential(client_id=client_id)
449447
ml_client = MLClient(credential, subscription_id, resource_group, workspace)
450-
data = ml_client.data.get(name=data_name, version="1")
451448
```
452449

453450
You can also use SDK V1:

0 commit comments

Comments
 (0)