...
1 package vars
2
3 import "fmt"
4
5 const (
6 dbURL = "%s@tcp(boulder-proxysql:6033)/%s"
7 )
8
9 var (
10
11 DBConnSA = fmt.Sprintf(dbURL, "sa", "boulder_sa_test")
12
13 DBConnSAMailer = fmt.Sprintf(dbURL, "mailer", "boulder_sa_test")
14
15 DBConnSAFullPerms = fmt.Sprintf(dbURL, "test_setup", "boulder_sa_test")
16
17
18 DBConnSAIntegrationFullPerms = fmt.Sprintf(dbURL, "test_setup", "boulder_sa_integration")
19
20 DBInfoSchemaRoot = fmt.Sprintf(dbURL, "root", "information_schema")
21
22 DBConnIncidents = fmt.Sprintf(dbURL, "incidents_sa", "incidents_sa_test")
23
24 DBConnIncidentsFullPerms = fmt.Sprintf(dbURL, "test_setup", "incidents_sa_test")
25 )
26
View as plain text