From d70538d2019716a15159f85079d1174cc84e8407 Mon Sep 17 00:00:00 2001 From: Peter Amstutz Date: Mon, 27 Jun 2022 16:13:21 -0400 Subject: [PATCH] 18870: Make sure database password is quoted in pillar Arvados-DCO-1.1-Signed-off-by: Peter Amstutz --- .../config_examples/multi_host/aws/pillars/postgresql.sls | 2 +- .../single_host/multiple_hostnames/pillars/postgresql.sls | 2 +- .../single_host/single_hostname/pillars/postgresql.sls | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/salt-install/config_examples/multi_host/aws/pillars/postgresql.sls b/tools/salt-install/config_examples/multi_host/aws/pillars/postgresql.sls index e06ddd041c..d6320da246 100644 --- a/tools/salt-install/config_examples/multi_host/aws/pillars/postgresql.sls +++ b/tools/salt-install/config_examples/multi_host/aws/pillars/postgresql.sls @@ -19,7 +19,7 @@ postgres: users: __CLUSTER___arvados: ensure: present - password: __DATABASE_PASSWORD__ + password: "__DATABASE_PASSWORD__" # tablespaces: # arvados_tablespace: diff --git a/tools/salt-install/config_examples/single_host/multiple_hostnames/pillars/postgresql.sls b/tools/salt-install/config_examples/single_host/multiple_hostnames/pillars/postgresql.sls index f3bc09f650..edb961ebaa 100644 --- a/tools/salt-install/config_examples/single_host/multiple_hostnames/pillars/postgresql.sls +++ b/tools/salt-install/config_examples/single_host/multiple_hostnames/pillars/postgresql.sls @@ -38,7 +38,7 @@ postgres: users: __CLUSTER___arvados: ensure: present - password: __DATABASE_PASSWORD__ + password: "__DATABASE_PASSWORD__" # tablespaces: # arvados_tablespace: diff --git a/tools/salt-install/config_examples/single_host/single_hostname/pillars/postgresql.sls b/tools/salt-install/config_examples/single_host/single_hostname/pillars/postgresql.sls index a69b88cb17..14452a9905 100644 --- a/tools/salt-install/config_examples/single_host/single_hostname/pillars/postgresql.sls +++ b/tools/salt-install/config_examples/single_host/single_hostname/pillars/postgresql.sls @@ -40,7 +40,7 @@ postgres: users: __CLUSTER___arvados: ensure: present - password: __DATABASE_PASSWORD__ + password: "__DATABASE_PASSWORD__" # tablespaces: # arvados_tablespace: -- 2.30.2