Fix typo in environment_config.yaml

The regular expression for validating the ElasticSearch address was
invalid which breaks the Settings page in the Fuel UI.

Change-Id: Icee075193cd3ee5b1a50b06d6f90c0a522147eb4
This commit is contained in:
Simon Pasquier 2015-03-04 13:46:59 +01:00
parent 91a09d1897
commit aa9a434574
1 changed files with 1 additions and 1 deletions

View File

@ -42,5 +42,5 @@ attributes:
- condition: "settings:lma_collector.elasticsearch_mode.value != 'remote'"
action: "disable"
regex:
source: '^[a-zA-Z\d]+[_-.\da-zA-Z]*$'
source: '^[a-zA-Z\d][a-zA-Z\d_\-.]+$'
error: "Invalid address or name"