AmlComputeSshSettings Class
SSH settings to access a AML compute target.
- Inheritance
-
builtins.objectAmlComputeSshSettings
Constructor
AmlComputeSshSettings(*, admin_username: str, admin_password: str | None = None, ssh_key_value: str | None = None)
Parameters
Name | Description |
---|---|
admin_username
Required
|
SSH user name. |
admin_password
Required
|
SSH user password. Defaults to None. |
ssh_key_value
Required
|
The SSH RSA private key. Use "ssh-keygen -t rsa -b 2048" to generate your SSH key pairs. Defaults to None. |
Keyword-Only Parameters
Name | Description |
---|---|
admin_username
Required
|
|
admin_password
Required
|
|
ssh_key_value
Required
|
|
Examples
Configuring an AmlComputeSshSettings object.
from azure.ai.ml.entities import AmlComputeSshSettings
ssh_settings = AmlComputeSshSettings(
admin_username="azureuser",
ssh_key_value="ssh-rsa ABCDEFGHIJKLMNOPQRSTUVWXYZ administrator@MININT-2023",
admin_password="password123",
)
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for Python