Allow admin password to be revealed

This commit is contained in:
Tom Wiesing 2023-04-12 14:05:24 +02:00
parent 85c63f24a9
commit 34db2e1923
No known key found for this signature in database
10 changed files with 117 additions and 19 deletions

View file

@ -40,4 +40,41 @@
<pre>
<code class="language-yaml">{{ .Config.MarshalSensitive }}</code>
</pre>
</div>
<div class="pure-u-1-1">
<h2 id="overview">Distillery Passwords</h2>
<table class="pure-table pure-table-bordered padding">
<thead>
<tr>
<th>Service</th>
<th>Username</th>
<th>Password</th>
</tr>
</thead>
<tbody>
<tr>
<td>
SQL
</td>
<td>
<code class="copy">{{ .Config.SQL.AdminUsername }}</code>
</td>
<td>
<span data-reveal="{{ .Config.SQL.AdminPassword }}"></span>
</td>
</tr>
<tr>
<td>
Triplestore
</td>
<td>
<code class="copy">{{ .Config.TS.AdminUsername }}</code>
</td>
<td>
<span data-reveal="{{ .Config.TS.AdminPassword }}"></span>
</td>
</tr>
</tbody>
</table>
</div>