101-machine-learning - update the settings of random_string (#271)

This commit is contained in:
Neil Ye 2023-11-15 12:38:36 +08:00 committed by GitHub
parent f72c62d2ad
commit 69d738882f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,6 +3,7 @@ resource "random_string" "ci_prefix" {
length = 8 length = 8
upper = false upper = false
special = false special = false
numeric = false
} }
# Compute instance # Compute instance
@ -31,4 +32,4 @@ resource "azurerm_machine_learning_compute_cluster" "compute" {
scale_down_nodes_after_idle_duration = "PT15M" # 15 minutes scale_down_nodes_after_idle_duration = "PT15M" # 15 minutes
} }
} }