0
0
llucycodes42
This code creates a provider for the PostgreSQL database. The host, port, username, and password are all required parameters. The ssl_mode parameter is optional and can be set to either sql or tls.
Shortcut: tf_postgresql
provider "postgresql" {
host = "host-example"
port = "port-example"
username = "username-example"
password = "password-example"
ssl_mode = "ssl_mode-example"
}