Skip to content
Snippets Groups Projects
Commit 4afaabc7 authored by Alex's avatar Alex
Browse files

fix: remove quotes from regex as per documentation

parent c31206d7
No related branches found
No related tags found
No related merge requests found
Pipeline #24395507 passed
Loading
Loading
@@ -12,7 +12,7 @@ spec:
module_name:
description: "The name of the module"
default: "${CI_PROJECT_NAME}"
regex: "^[a-z]([a-z0-9-]){1,63}$"
regex: ^[a-z]([a-z0-9-]){1,63}$
module_system:
description: |
The name of a remote system that the module is primarily written to target.
Loading
Loading
@@ -24,7 +24,7 @@ spec:
like aws or azurerm in the above examples,
but that is not required
and so you can use whichever system keywords make sense for the organization of your particular registry.
regex: "^[a-z]([a-z0-9-]){1,63}$"
regex: ^[a-z]([a-z0-9-]){1,63}$
 
---
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment