-
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.
Refactor samples with terraform and defaultCredential for Servicebus …
…samples (#138)
- Loading branch information
1 parent
52b2f02
commit 1c7e4df
Showing
46 changed files
with
1,247 additions
and
1,250 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: 2 additions & 4 deletions
6
...pring-cloud-azure-starter-integration-servicebus/multiple-namespaces/terraform/outputs.tf
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,11 +1,9 @@ | ||
output "AZURE_SERVICEBUS_NAMESPACE_01" { | ||
value = azurerm_servicebus_namespace.servicebus_namespace_01.name | ||
description = "The servicebus_01 namespace." | ||
description = "The name of servicebus_01 namespace." | ||
} | ||
|
||
output "AZURE_SERVICEBUS_NAMESPACE_02" { | ||
value = azurerm_servicebus_namespace.servicebus_namespace_02.name | ||
description = "The servicebus_02 namespace." | ||
description = "The name of servicebus_02 namespace." | ||
} | ||
|
||
|
10 changes: 5 additions & 5 deletions
10
...ing-cloud-azure-starter-integration-servicebus/multiple-namespaces/terraform/variables.tf
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,17 +1,17 @@ | ||
variable "application_name" { | ||
type = string | ||
description = "The name of your application" | ||
default = "servicebusapp" | ||
description = "The name of your application." | ||
default = "multiple-namespaces-servicebus" | ||
} | ||
|
||
variable "location" { | ||
type = string | ||
description = "The Azure region where all resources in this example should be created" | ||
description = "The Azure region where all resources in this example should be created." | ||
default = "eastus" | ||
} | ||
|
||
variable "sample_tag_value" { | ||
type = string | ||
description = "The value of spring-cloud-azure-sample tag" | ||
description = "The value of spring-cloud-azure-sample tag." | ||
default = "true" | ||
} | ||
} |
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
3 changes: 1 addition & 2 deletions
3
...s/spring-cloud-azure-starter-integration-servicebus/single-namespace/terraform/outputs.tf
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,4 @@ | ||
output "SERVICEBUS_NAMESPACE" { | ||
value = azurerm_servicebus_namespace.servicebus_namespace.name | ||
description = "The servicebus namespace." | ||
description = "The name of servicebus namespace." | ||
} | ||
|
8 changes: 4 additions & 4 deletions
8
...spring-cloud-azure-starter-integration-servicebus/single-namespace/terraform/variables.tf
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,17 +1,17 @@ | ||
variable "application_name" { | ||
type = string | ||
description = "The name of your application" | ||
default = "servicebusapp" | ||
description = "The name of your application." | ||
default = "single-namespaces-servicebus" | ||
} | ||
|
||
variable "location" { | ||
type = string | ||
description = "The Azure region where all resources in this example should be created" | ||
description = "The Azure region where all resources in this example should be created." | ||
default = "eastus" | ||
} | ||
|
||
variable "sample_tag_value" { | ||
type = string | ||
description = "The value of spring-cloud-azure-sample tag" | ||
description = "The value of spring-cloud-azure-sample tag." | ||
default = "true" | ||
} |
Oops, something went wrong.