apply terraform fmt

This commit is contained in:
Dennis Eikelenboom
2021-09-29 08:48:01 -07:00
parent a609b64fd1
commit 9fcd0f3fb2
7 changed files with 69 additions and 69 deletions

View File

@ -1,9 +1,9 @@
# Generate random string for unique compute instance name
resource "random_string" "ci_prefix" {
length = 8
upper = false
length = 8
upper = false
special = false
number = false
number = false
}
# Compute instance
@ -21,7 +21,7 @@ resource "azurerm_machine_learning_compute_cluster" "compute" {
machine_learning_workspace_id = azurerm_machine_learning_workspace.default.id
vm_priority = "Dedicated"
vm_size = "STANDARD_DS2_V2"
identity {
type = "SystemAssigned"
}
@ -31,5 +31,5 @@ resource "azurerm_machine_learning_compute_cluster" "compute" {
max_node_count = 3
scale_down_nodes_after_idle_duration = "PT15M" # 15 minutes
}
}