-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
88 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
...ng-cloud-azure-starter-integration-servicebus/multiple-namespaces/terraform/setup_env.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
$env:AZURE_SERVICEBUS_NAMESPACE_01=$(terraform -chdir=terraform output -raw AZURE_SERVICEBUS_NAMESPACE_01) | ||
$env:AZURE_SERVICEBUS_NAMESPACE_02=$(terraform -chdir=terraform output -raw AZURE_SERVICEBUS_NAMESPACE_02) | ||
|
||
$env:AZURE_SERVICEBUS_NAMESPACE_01_QUEUE_NAME=$(terraform -chdir=terraform output -raw AZURE_SERVICEBUS_NAMESPACE_01_QUEUE_NAME) | ||
$env:AZURE_SERVICEBUS_NAMESPACE_02_QUEUE_NAME=$(terraform -chdir=terraform output -raw AZURE_SERVICEBUS_NAMESPACE_02_QUEUE_NAME) | ||
|
||
echo AZURE_SERVICEBUS_NAMESPACE_01=$env:AZURE_SERVICEBUS_NAMESPACE_01 | ||
echo AZURE_SERVICEBUS_NAMESPACE_02=$env:AZURE_SERVICEBUS_NAMESPACE_02 | ||
|
||
echo AZURE_SERVICEBUS_NAMESPACE_01_QUEUE_NAME=$env:AZURE_SERVICEBUS_NAMESPACE_01_QUEUE_NAME | ||
echo AZURE_SERVICEBUS_NAMESPACE_02_QUEUE_NAME=$env:AZURE_SERVICEBUS_NAMESPACE_02_QUEUE_NAME |
6 changes: 6 additions & 0 deletions
6
...ing-cloud-azure-starter-integration-servicebus/multiple-namespaces/terraform/setup_env.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
export AZURE_SERVICEBUS_NAMESPACE_01=$(terraform -chdir=./terraform output -raw AZURE_SERVICEBUS_NAMESPACE_01) | ||
export AZURE_SERVICEBUS_NAMESPACE_02=$(terraform -chdir=./terraform output -raw AZURE_SERVICEBUS_NAMESPACE_02) | ||
|
||
export AZURE_SERVICEBUS_NAMESPACE_01_QUEUE_NAME=$(terraform -chdir=./terraform output -raw AZURE_SERVICEBUS_NAMESPACE_01_QUEUE_NAME) | ||
export AZURE_SERVICEBUS_NAMESPACE_02_QUEUE_NAME=$(terraform -chdir=./terraform output -raw AZURE_SERVICEBUS_NAMESPACE_02_QUEUE_NAME) | ||
|
||
echo AZURE_SERVICEBUS_NAMESPACE_01=$AZURE_SERVICEBUS_NAMESPACE_01 | ||
echo AZURE_SERVICEBUS_NAMESPACE_02=$AZURE_SERVICEBUS_NAMESPACE_02 | ||
|
||
echo AZURE_SERVICEBUS_NAMESPACE_01_QUEUE_NAME=$AZURE_SERVICEBUS_NAMESPACE_01_QUEUE_NAME | ||
echo AZURE_SERVICEBUS_NAMESPACE_02_QUEUE_NAME=$AZURE_SERVICEBUS_NAMESPACE_02_QUEUE_NAME |