浏览代码

Ensure Postgres passwords are not longer than 99 characters

Complements https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/732
pull/736/head
Slavi Pantaleev 5 年前
父节点
当前提交
796c752b60
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. +5
    -0
      roles/matrix-postgres/tasks/validate_config.yml

+ 5
- 0
roles/matrix-postgres/tasks/validate_config.yml 查看文件

@@ -20,3 +20,8 @@
- "matrix_postgres_connection_username"
- "matrix_postgres_connection_password"
- "matrix_postgres_db_name"

- name: Fail if Postgres password length exceeded
fail:
msg: "The maximum `matrix_postgres_connection_password` length is 99 characters"
when: "matrix_postgres_connection_hostname|length > 99"

正在加载...
取消
保存