Connection - Password Attribute

Password

A password is a connection attribute that permits to identify the user.

How to set it?

If you want to set the connection password for the connection name postgres, you can set it on Linux as environment variable:

export TABUL_POSTGRES_PASSWORD=xxx
# ie export TABUL_connectionNAME_PASSWORD=xxx

You can even encrypt the value.

To be more explicit or if you want to use another name, you can set it in the configuration vault file:

connections:
  postgres:
     password: ${YOUR_PASSWORD}



Related HowTo
How to create a SMTP connection?

This howto shows you how to create a smtp connection to a SMTP system An oracle connection supports : all common connection attributes Uri, user, password ... and all Smtp connection...
How to create a SQLite connection?

This howto shows you how to add a Sqlite connection. An sqlite connection supports : all common connection attributes Uri, user, password ... and all relational connection attributes ...
How to create an Microsoft SqlServer connection?

This howto shows you how to create a connection to an sqlserver database. An sqlserver connection supports : all common connection attributes Uri, user, password ... and all relational...
How to create an MySQL connection?

This howto shows you how to create a connection to an mysql database. An mysql connection supports : all common connection attributes Uri, user, password ... and all database connection...
How to create an Oracle connection?

This howto shows you how to create a connection to an oracle database. An oracle connection supports : all common connection attributes Uri, user, password ... and all relational connection...

Task Runner