From 6ff4901067ceb60702132343719609fe79e3cdc1 Mon Sep 17 00:00:00 2001 From: Corey Ogburn Date: Tue, 3 Feb 2026 13:54:21 -0700 Subject: [PATCH] Regex on Model Name This matches the regex we apply to the adapter name as we join these 2 using an @ to get things done. --- salt/soc/soc_soc.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/salt/soc/soc_soc.yaml b/salt/soc/soc_soc.yaml index 95a536f7d..2086492ad 100644 --- a/salt/soc/soc_soc.yaml +++ b/salt/soc/soc_soc.yaml @@ -731,6 +731,8 @@ soc: - field: id label: Model ID required: True + regex: "^(?!.*@).+$" + regexFailureMessage: Model ID cannot contain the '@' character - field: displayName label: Display Name required: True