Skip to content

Commit

Permalink
Update owner validation value in sample config file (#203)
Browse files Browse the repository at this point in the history
* cfg val change so sample basic auth key works

* update change notes
  • Loading branch information
joe94 authored Sep 20, 2021
1 parent e9a412b commit 90e33a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]
- Update store section in sample config files. [#200](https://github.com/xmidt-org/argus/pull/200)
- Update sample config value so argus webhook integration works out of the box in test environments. [#203](https://github.com/xmidt-org/argus/pull/203)

## [v0.5.1]
- Fix github actions config for uploading test and coverage reports for sonarcloud. [#192](https://github.com/xmidt-org/argus/pull/192)
Expand Down
2 changes: 1 addition & 1 deletion argus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ userInputValidation:

# ownerFormatRegex helps define the validity of a bucket through a regular expression.
# (Optional) default: ^.{10,60}$
ownerFormatRegex: "^.{10,60}$"
ownerFormatRegex: "^.{4,60}$"

# itemDataMaxDepth is the max allowed depth of the Item JSON data field.
# If your DB supports up to N nested objects, itemDataMaxDepth should be set to
Expand Down
2 changes: 1 addition & 1 deletion deploy/packaging/argus_spruce.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ userInputValidation:

# ownerFormatRegex helps define the validity of a bucket through a regular expression.
# (Optional) default: ^.{10,60}$
ownerFormatRegex: (( grab $OWNER_FORMAT_REGEX || "^.{10,60}$" ))
ownerFormatRegex: (( grab $OWNER_FORMAT_REGEX || "^.{4,60}$" ))

# itemDataMaxDepth is the max allowed depth of the Item JSON data field.
# If your DB supports up to N nested objects, itemDataMaxDepth should be set to
Expand Down

0 comments on commit 90e33a1

Please sign in to comment.