From 69d738882fb26f1d2546af95b64ecc44817ee71e Mon Sep 17 00:00:00 2001 From: Neil Ye Date: Wed, 15 Nov 2023 12:38:36 +0800 Subject: [PATCH] 101-machine-learning - update the settings of random_string (#271) --- quickstart/101-machine-learning/compute.tf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/quickstart/101-machine-learning/compute.tf b/quickstart/101-machine-learning/compute.tf index ea69fc74..d35fc64c 100644 --- a/quickstart/101-machine-learning/compute.tf +++ b/quickstart/101-machine-learning/compute.tf @@ -3,6 +3,7 @@ resource "random_string" "ci_prefix" { length = 8 upper = false special = false + numeric = false } # Compute instance @@ -31,4 +32,4 @@ resource "azurerm_machine_learning_compute_cluster" "compute" { scale_down_nodes_after_idle_duration = "PT15M" # 15 minutes } -} \ No newline at end of file +}