Skip to content

Commit

Permalink
test(connectionpool): fix misuse of wrong user resource (#1348)
Browse files Browse the repository at this point in the history
  • Loading branch information
Serpentiel authored Sep 7, 2023
1 parent b86eafb commit 2ac6917
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ resource "aiven_pg" "bar" {
maintenance_window_time = "10:00:00"
}
resource "aiven_opensearch_user" "foo" {
resource "aiven_pg_user" "foo" {
service_name = aiven_pg.bar.service_name
project = data.aiven_project.foo.project
username = "user-%s"
Expand All @@ -124,7 +124,7 @@ resource "aiven_connection_pool" "foo" {
service_name = aiven_pg.bar.service_name
project = data.aiven_project.foo.project
database_name = aiven_pg_database.foo.database_name
username = aiven_opensearch_user.foo.username
username = aiven_pg_user.foo.username
pool_name = "test-acc-pool-%s"
pool_size = 25
pool_mode = "transaction"
Expand Down

0 comments on commit 2ac6917

Please sign in to comment.