Skip to content

Commit

Permalink
fix: added region shorthands (#255)
Browse files Browse the repository at this point in the history
  • Loading branch information
celaus committed Aug 19, 2024
1 parent 6b36beb commit 88a25d0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions coralogix/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,17 @@ import (
var (
envToGrpcUrl = map[string]string{
"APAC1": "ng-api-grpc.app.coralogix.in:443",
"AP1": "ng-api-grpc.app.coralogix.in:443",
"APAC2": "ng-api-grpc.coralogixsg.com:443",
"AP2": "ng-api-grpc.coralogixsg.com:443",
"EUROPE1": "ng-api-grpc.coralogix.com:443",
"EU1": "ng-api-grpc.coralogix.com:443",
"EUROPE2": "ng-api-grpc.eu2.coralogix.com:443",
"EU2": "ng-api-grpc.eu2.coralogix.com:443",
"USA1": "ng-api-grpc.coralogix.us:443",
"US1": "ng-api-grpc.coralogix.us:443",
"USA2": "ng-api-grpc.cx498.coralogix.com:443",
"US2": "ng-api-grpc.cx498.coralogix.com:443",
}
validEnvs = getKeysStrings(envToGrpcUrl)
)
Expand Down

0 comments on commit 88a25d0

Please sign in to comment.