Skip to content

Commit

Permalink
fix app ID names in all sdk languages
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobRoberts committed Mar 8, 2024
1 parent 2c24955 commit 4fc78f3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions go/tunnels/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ var ServiceProperties = TunnelServiceProperties{

var PpeServiceProperties = TunnelServiceProperties{
ServiceURI: fmt.Sprintf("https://%s/", ppeDnsName),
ServiceAppID: nonProdFirstPartyAppID,
ServiceAppID: ppeFirstPartyAppID,
ServiceInternalAppID: ppeThirdPartyAppID,
GitHubAppClientID: nonProdGitHubAppClientID,
}

var DevServiceProperties = TunnelServiceProperties{
ServiceURI: fmt.Sprintf("https://%s/", devDnsName),
ServiceAppID: nonProdFirstPartyAppID,
ServiceAppID: devFirstPartyAppID,
ServiceInternalAppID: devThirdPartyAppID,
GitHubAppClientID: nonProdGitHubAppClientID,
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class TunnelServicePropertiesStatics {
*/
static final TunnelServiceProperties staging = new TunnelServiceProperties(
"https://" + TunnelServiceProperties.ppeDnsName + "/",
TunnelServiceProperties.nonProdFirstPartyAppId,
TunnelServiceProperties.ppeFirstPartyAppId,
TunnelServiceProperties.ppeThirdPartyAppId,
TunnelServiceProperties.nonProdGitHubAppClientId);

Expand All @@ -31,7 +31,7 @@ class TunnelServicePropertiesStatics {
*/
static final TunnelServiceProperties development = new TunnelServiceProperties(
"https://" + TunnelServiceProperties.devDnsName + "/",
TunnelServiceProperties.nonProdFirstPartyAppId,
TunnelServiceProperties.devFirstPartyAppId,
TunnelServiceProperties.devThirdPartyAppId,
TunnelServiceProperties.nonProdGitHubAppClientId);

Expand Down
7 changes: 4 additions & 3 deletions ts/src/contracts/tunnelServicePropertiesStatics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
import {
TunnelServiceProperties as ITunnelServiceProperties,
prodFirstPartyAppId,
nonProdFirstPartyAppId,
ppeFirstPartyAppId,
devFirstPartyAppId,
prodThirdPartyAppId,
ppeThirdPartyAppId,
devThirdPartyAppId,
Expand All @@ -30,7 +31,7 @@ export const production = <ITunnelServiceProperties>{
*/
export const staging = <ITunnelServiceProperties>{
serviceUri: `https://${ppeDnsName}/`,
serviceAppId: nonProdFirstPartyAppId,
serviceAppId: ppeFirstPartyAppId,
serviceInternalAppId: ppeThirdPartyAppId,
gitHubAppClientId: nonProdGitHubAppClientId,
};
Expand All @@ -40,7 +41,7 @@ export const staging = <ITunnelServiceProperties>{
*/
export const development = <ITunnelServiceProperties>{
serviceUri: `https://${devDnsName}/`,
serviceAppId: nonProdFirstPartyAppId,
serviceAppId: devFirstPartyAppId,
serviceInternalAppId: devThirdPartyAppId,
gitHubAppClientId: nonProdGitHubAppClientId,
};
Expand Down

0 comments on commit 4fc78f3

Please sign in to comment.