Skip to content

Commit

Permalink
try gh postgres service
Browse files Browse the repository at this point in the history
  • Loading branch information
fairclothjm committed Oct 17, 2024
1 parent 62f6fef commit 2834274
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vault/resource_database_secret_backend_static_role_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,8 @@ CREATE ROLE "{{name}}" WITH
t.Log("pgxURL", pgxURL)
t.Cleanup(cleanup)

connURL := fmt.Sprintf("postgresql://{{username}}:{{password}}@%s/postgres?sslmode=disable", pgxURL.Host)
// connURL := fmt.Sprintf("postgresql://{{username}}:{{password}}@%s/postgres?sslmode=disable", pgxURL.Host)
connURL := "postgresql://{{username}}:{{password}}@localhost:5432/postgres?sslmode=disable"
t.Log("connURL ", connURL)

fmt.Println(testAccDatabaseSecretBackendStaticRoleConfig_rootlessConfig(name, username, dbName, backend, connURL, "testpassword"))
Expand Down

0 comments on commit 2834274

Please sign in to comment.