diff --git a/docs/commands/distributed-engines/Test-TssDistributedEngineCloudAccess.md b/docs/commands/distributed-engines/Test-TssDistributedEngineCloudAccess.md index 9d4b8aae..c89da324 100644 --- a/docs/commands/distributed-engines/Test-TssDistributedEngineCloudAccess.md +++ b/docs/commands/distributed-engines/Test-TssDistributedEngineCloudAccess.md @@ -19,7 +19,7 @@ This function would be used from your Distributed Engine to verify the proper ou ### EXAMPLE 1 ``` -$session = New-TssSession -SecretServer https://alpha -Credential $ssCred +$session = New-TssSession -SecretServer https://tenant.secretservercloud.com -Credential $ssCred Test-TssDistributedEngineCloudAccess -TssSession $session -TransportType AMQP -Timeout 30 ``` @@ -27,7 +27,7 @@ Run Hostname and IP port test for SSC URL and Service Bus with ports 5671 and 56 ### EXAMPLE 2 ``` -$session = New-TssSession -SecretServer https://alpha -Credential $ssCred +$session = New-TssSession -SecretServer https://tenant.secretservercloud.eu -Credential $ssCred Test-TssDistributedEngineCloudAccess -TssSession $session ``` diff --git a/src/functions/distributed-engines/Test-TssDistributedEngineCloudAccess.ps1 b/src/functions/distributed-engines/Test-TssDistributedEngineCloudAccess.ps1 index 248d8c03..516e839d 100644 --- a/src/functions/distributed-engines/Test-TssDistributedEngineCloudAccess.ps1 +++ b/src/functions/distributed-engines/Test-TssDistributedEngineCloudAccess.ps1 @@ -8,13 +8,13 @@ function Test-TssDistributedEngineCloudAccess { This function would be used from your Distributed Engine to verify the proper outputbound access is in place for a Distributed Engine to communicate with SSC. .EXAMPLE - $session = New-TssSession -SecretServer https://alpha -Credential $ssCred + $session = New-TssSession -SecretServer https://tenant.secretservercloud.com -Credential $ssCred Test-TssDistributedEngineCloudAccess -TssSession $session -TransportType AMQP -Timeout 30 Run Hostname and IP port test for SSC URL and Service Bus with ports 5671 and 5672 for AMQP, with a timeout of 30 seconds .EXAMPLE - $session = New-TssSession -SecretServer https://alpha -Credential $ssCred + $session = New-TssSession -SecretServer https://tenant.secretservercloud.eu -Credential $ssCred Test-TssDistributedEngineCloudAccess -TssSession $session Run Hostname and IP port test for SSC URL and Service Bus with port 443 (Web Sockets), with a default timeout of 5 seconds