File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -131,12 +131,14 @@ resource "aws_db_proxy_default_target_group" "main" {
131131
132132 dynamic "connection_pool_config" {
133133 for_each = var. connection_pool_config
134+
134135 content {
135- connection_borrow_timeout = lookup (var. connection_pool_config . value , " connection_borrow_timeout" , null )
136- init_query = lookup (var. connection_pool_config . value , " init_query" , null )
137- max_connections_percent = lookup (var. connection_pool_config . value , " max_connections_percent" , null )
138- max_idle_connections_percent = lookup (var. connection_pool_config . value , " max_idle_connections_percent" , null )
139- session_pinning_filters = lookup (var. connection_pool_config . value , " session_pinning_filters" , null )
136+
137+ connection_borrow_timeout = lookup (connection_pool_config. value , " connection_borrow_timeout" , null )
138+ init_query = lookup (connection_pool_config. value , " init_query" , null )
139+ max_connections_percent = lookup (connection_pool_config. value , " max_connections_percent" , null )
140+ max_idle_connections_percent = lookup (connection_pool_config. value , " max_idle_connections_percent" , null )
141+ session_pinning_filters = lookup (connection_pool_config. value , " session_pinning_filters" , null )
140142 }
141143 }
142144}
You can’t perform that action at this time.
0 commit comments