File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
modules/teleport-db-login Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 11locals {
22 db_connection_info = data. external . db_connection_info . result
3- db_connection_host = module. this . enabled ? local. db_config [" host" ] : " "
4- db_connection_port = module. this . enabled ? local. db_config [" port" ] : " "
5- db_connection_ssl_ca = module. this . enabled ? local. db_config [" ca" ] : " "
6- db_connection_ssl_cert = module. this . enabled ? local. db_config [" cert" ] : " "
7- db_connection_ssl_key = module. this . enabled ? local. db_config [" key" ] : " "
3+ db_connection_host = module. this . enabled ? local. db_connection_info [" host" ] : " "
4+ db_connection_port = module. this . enabled ? local. db_connection_info [" port" ] : " "
5+ db_connection_ssl_ca = module. this . enabled ? local. db_connection_info [" ca" ] : " "
6+ db_connection_ssl_cert = module. this . enabled ? local. db_connection_info [" cert" ] : " "
7+ db_connection_ssl_key = module. this . enabled ? local. db_connection_info [" key" ] : " "
88}
99
1010data "external" "db_connection_info" {
You can’t perform that action at this time.
0 commit comments