Skip to content

Commit

Permalink
Core provider update (#3991)
Browse files Browse the repository at this point in the history
* Update clean_validation_envs.yml

* update

* update BRANCH_LAST_ACTIVITY_IN_HOURS_FOR_STOP: 8

* update

* rest activity

* update version

* pin provider

* add in premium_messaging_partitions for sb

* update type

* update other providers

* remove deprecated attributes

* more depricated attributes

* reset

* add in tf lock
  • Loading branch information
Tim Allen authored Jun 21, 2024
1 parent 59d006a commit 73944ed
Show file tree
Hide file tree
Showing 5 changed files with 86 additions and 84 deletions.
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

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"

0 comments on commit 73944ed

Please sign in to comment.