Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Core provider update #3991

Merged
merged 22 commits into from
Jun 21, 2024
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
## 0.18.0 (Unreleased)

**BREAKING CHANGES & MIGRATIONS**:

* Update Core Terraform Provider versions ([[#3919](https://github.com/microsoft/AzureTRE/issues/3919)])

FEATURES:

ENHANCEMENTS:
Expand Down
142 changes: 71 additions & 71 deletions core/terraform/.terraform.lock.hcl
tim-p-allen marked this conversation as resolved.
Show resolved Hide resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions core/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "=3.74.0"
version = "=3.108.0"
}
random = {
source = "hashicorp/random"
version = "~> 3.4.0"
version = "~> 3.6"
}
local = {
source = "hashicorp/local"
version = "~> 2.4.0"
version = "~> 2.5"
}
http = {
source = "hashicorp/http"
version = "~> 3.2.0"
version = "~> 3.4"
}
azapi = {
source = "Azure/azapi"
version = "~> 1.9.0"
version = "~> 1.13.0"
}
}

Expand Down
13 changes: 7 additions & 6 deletions core/terraform/servicebus.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
resource "azurerm_servicebus_namespace" "sb" {
name = "sb-${var.tre_id}"
location = azurerm_resource_group.core.location
resource_group_name = azurerm_resource_group.core.name
sku = "Premium"
capacity = "1"
tags = local.tre_core_tags
name = "sb-${var.tre_id}"
location = azurerm_resource_group.core.location
resource_group_name = azurerm_resource_group.core.name
sku = "Premium"
premium_messaging_partitions = "1"
capacity = "1"
tags = local.tre_core_tags

# Block public access
# See https://docs.microsoft.com/azure/service-bus-messaging/service-bus-service-endpoints
Expand Down
2 changes: 1 addition & 1 deletion core/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.9.10"
__version__ = "0.9.11"
Loading