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: quickstart/301-machine-learning-hub-spoke-secure/readme.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,8 @@ This configuration describes the minimal set of resources you require to get sta
13
13
| Terraform Resource Type | Description |
14
14
| - | - |
15
15
|`azurerm_resource_group`| The resource group all resources get deployed into |
16
+
|`azurerm_bastion_host`| An Azure Bastion Instance to securely RDP/SSH into Virtual Machines deployed into the Virtual Network |
17
+
|`azurerm_windows_virtual_machine`| A Windows Data Science Virtual Machine used for connecting to the Azure Machine Learning workspace |
16
18
|`azurerm_application_insights`| An Azure Application Insights instance associated to the Azure Machine Learning workspace |
17
19
|`azurerm_key_vault`| An Azure Key Vault instance associated to the Azure Machine Learning workspace |
18
20
|`azurerm_storage_account`| An Azure Storage instance associated to the Azure Machine Learning workspace |
@@ -26,6 +28,8 @@ This configuration describes the minimal set of resources you require to get sta
26
28
|`azurerm_machine_learning_compute_instance`| An Azure Machine Learning compute instance a single-node managed compute. |
27
29
|`azurerm_machine_learning_compute_cluster`| An Azure Machine Learning compute cluster as multi-node shared and managed compute. |
28
30
|`azurerm_network_security_group`| Network security group with required inbound and outbound rules for Azure Machine Learning. |
31
+
|`azurerm_firewall`| An Azure firewall instance used for egress traffic on the Virtual Network. |
32
+
|`azurerm_public_ip`| A public IP resource used for the Azure Firewall. |
29
33
30
34
## Variables
31
35
@@ -38,8 +42,14 @@ This configuration describes the minimal set of resources you require to get sta
38
42
| training_subnet_address_space | Address space of the training subnet |["10.0.1.0/24"]|
39
43
| aks_subnet_address_space | Address space of the aks subnet |["10.0.2.0/23"]|
40
44
| ml_subnet_address_space | Address space of the ML workspace subnet |["10.0.0.0/24"]|
45
+
| vnet_hub_address_space | Address space of the Hub virtual network |["10.1.0.0/16"]|
46
+
| jumphost_subnet_address_space | Address space of the Jumphost subnet |["10.1.2.0/24"]|
47
+
| bastion_subnet_address_space | Address space of the bastion subnet |["10.1.3.0/24"]|
48
+
| firewall_subnet_address_space | Address space of the Az Fiewall subnet |["10.1.4.0/24"]|
41
49
| image_build_compute_name | Name of the compute cluster to be created and configured for building docker images (Azure ML Environments) | image-builder |
42
-
50
+
| dsvm_name | Name of the Windows Data Science VM resource | vmdsvm01 |
51
+
| dsvm_admin_username | Admin username of the Windows Data Science VM | azureadmin |
52
+
| dsvm_host_password | Password for the admin username of the Data Science VM | - |
0 commit comments