Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions cs/src/Contracts/TunnelServiceProperties.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,14 @@ public class TunnelServiceProperties
internal const string PpeFirstPartyAppId = "54c45752-bacd-424a-b928-652f3eca2b18";

/// <summary>
/// First-party app ID: `DEV-VSTunnels`
/// Third-party app ID: `DEV-VSTunnelService-3P`
/// </summary>
/// <remarks>
/// Used for authenticating AAD/MSA users, and service principals outside the AME tenant,
/// in the DEV service environment
/// in the DEV service environment.
/// This is a 3P app registration in the Microsoft corp tenant, replacing the former 1P FPA.
/// </remarks>
internal const string DevFirstPartyAppId = "9c63851a-ba2b-40a5-94bd-890be43b9284";
internal const string DevFirstPartyAppId = "906ce216-6f2e-40be-875d-7fe1a9bc288a";

/// <summary>
/// Third-party app ID: `tunnels-prod-app-sp`
Expand Down
7 changes: 4 additions & 3 deletions go/tunnels/tunnel_service_properties.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,12 @@ var prodFirstPartyAppID = "46da2f7e-b5ef-422a-88d4-2a7f9de6a0b2"
// in the PPE service environments.
var ppeFirstPartyAppID = "54c45752-bacd-424a-b928-652f3eca2b18"

// First-party app ID: `DEV-VSTunnels`
// Third-party app ID: `DEV-VSTunnelService-3P`
//
// Used for authenticating AAD/MSA users, and service principals outside the AME tenant,
// in the DEV service environment
var devFirstPartyAppID = "9c63851a-ba2b-40a5-94bd-890be43b9284"
// in the DEV service environment. This is a 3P app registration in the Microsoft corp
// tenant, replacing the former 1P FPA.
var devFirstPartyAppID = "906ce216-6f2e-40be-875d-7fe1a9bc288a"

// Third-party app ID: `tunnels-prod-app-sp`
//
Expand Down
2 changes: 1 addition & 1 deletion go/tunnels/tunnels.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/rodaine/table"
)

const PackageVersion = "0.1.21"
const PackageVersion = "0.1.22"

func (tunnel *Tunnel) requestObject() (*Tunnel, error) {
convertedTunnel := &Tunnel{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,13 @@ public class TunnelServiceProperties {
static final String ppeFirstPartyAppId = "54c45752-bacd-424a-b928-652f3eca2b18";

/**
* First-party app ID: `DEV-VSTunnels`
* Third-party app ID: `DEV-VSTunnelService-3P`
*
* Used for authenticating AAD/MSA users, and service principals outside the AME
* tenant, in the DEV service environment
* tenant, in the DEV service environment. This is a 3P app registration in the
* Microsoft corp tenant, replacing the former 1P FPA.
*/
static final String devFirstPartyAppId = "9c63851a-ba2b-40a5-94bd-890be43b9284";
static final String devFirstPartyAppId = "906ce216-6f2e-40be-875d-7fe1a9bc288a";

/**
* Third-party app ID: `tunnels-prod-app-sp`
Expand Down
7 changes: 4 additions & 3 deletions rs/src/contracts/tunnel_service_properties.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,12 @@ pub const PROD_FIRST_PARTY_APP_ID: &str = "46da2f7e-b5ef-422a-88d4-2a7f9de6a0b2"
// in the PPE service environments.
pub const PPE_FIRST_PARTY_APP_ID: &str = "54c45752-bacd-424a-b928-652f3eca2b18";

// First-party app ID: `DEV-VSTunnels`
// Third-party app ID: `DEV-VSTunnelService-3P`
//
// Used for authenticating AAD/MSA users, and service principals outside the AME tenant,
// in the DEV service environment
pub const DEV_FIRST_PARTY_APP_ID: &str = "9c63851a-ba2b-40a5-94bd-890be43b9284";
// in the DEV service environment. This is a 3P app registration in the Microsoft corp
// tenant, replacing the former 1P FPA.
pub const DEV_FIRST_PARTY_APP_ID: &str = "906ce216-6f2e-40be-875d-7fe1a9bc288a";

// Third-party app ID: `tunnels-prod-app-sp`
//
Expand Down
4 changes: 2 additions & 2 deletions ts/src/connections/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"buffer": "^5.2.1",
"debug": "^4.1.1",
"vscode-jsonrpc": "^4.0.0",
"@microsoft/dev-tunnels-contracts": "^1.3.8",
"@microsoft/dev-tunnels-management": "^1.3.8",
"@microsoft/dev-tunnels-contracts": "^1.3.9",
"@microsoft/dev-tunnels-management": "^1.3.9",
"uuid": "^3.3.3",
"await-semaphore": "^0.1.3",
"websocket": "^1.0.28",
Expand Down
7 changes: 4 additions & 3 deletions ts/src/contracts/tunnelServiceProperties.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,13 @@ export const prodFirstPartyAppId = '46da2f7e-b5ef-422a-88d4-2a7f9de6a0b2';
export const ppeFirstPartyAppId = '54c45752-bacd-424a-b928-652f3eca2b18';

/**
* First-party app ID: `DEV-VSTunnels`
* Third-party app ID: `DEV-VSTunnelService-3P`
*
* Used for authenticating AAD/MSA users, and service principals outside the AME tenant,
* in the DEV service environment
* in the DEV service environment. This is a 3P app registration in the Microsoft corp
* tenant, replacing the former 1P FPA.
*/
export const devFirstPartyAppId = '9c63851a-ba2b-40a5-94bd-890be43b9284';
export const devFirstPartyAppId = '906ce216-6f2e-40be-875d-7fe1a9bc288a';

/**
* Third-party app ID: `tunnels-prod-app-sp`
Expand Down
2 changes: 1 addition & 1 deletion ts/src/management/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"buffer": "^5.2.1",
"debug": "^4.1.1",
"vscode-jsonrpc": "^4.0.0",
"@microsoft/dev-tunnels-contracts": "^1.3.8",
"@microsoft/dev-tunnels-contracts": "^1.3.9",
"axios": "^1.8.4"
}
}
Loading