diff options
author | Christian Breunig <christian@breunig.cc> | 2023-04-05 17:52:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-05 17:52:00 +0200 |
commit | 0b0f991a86461ed725762010cf263fb2f0eaa16a (patch) | |
tree | c2dbbe85008b9b1a946fea78ae0142f034a480e7 /interface-definitions/include/generic-password.xml.i | |
parent | e890a70d134fc63507ec396f9b7d4290df1cc0cb (diff) | |
parent | df58e083979a40df8c1a1391b82b2e4d856225dd (diff) | |
download | vyos-1x-0b0f991a86461ed725762010cf263fb2f0eaa16a.tar.gz vyos-1x-0b0f991a86461ed725762010cf263fb2f0eaa16a.zip |
Merge pull request #1928 from c-po/t4959-backport
T4959: Add container registry authentication config for containers (backport)
Diffstat (limited to 'interface-definitions/include/generic-password.xml.i')
-rw-r--r-- | interface-definitions/include/generic-password.xml.i | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/interface-definitions/include/generic-password.xml.i b/interface-definitions/include/generic-password.xml.i new file mode 100644 index 000000000..76d5f12d8 --- /dev/null +++ b/interface-definitions/include/generic-password.xml.i @@ -0,0 +1,15 @@ +<!-- include start from generic-password.xml.i --> +<leafNode name="password"> + <properties> + <help>Password used for authentication</help> + <valueHelp> + <format>txt</format> + <description>Password</description> + </valueHelp> + <constraint> + <regex>[[:ascii:]]{1,128}</regex> + </constraint> + <constraintErrorMessage>Password is limited to ASCII characters only, with a total length of 128</constraintErrorMessage> + </properties> +</leafNode> +<!-- include end --> |