Skip to content

Commit 0b925ef

Browse files
authored
bump(m365): bump terraform providers and image dependencies (#19)
* bump(m365): opa and azcopy versions * bump(m365): azurerm and azuread tf providers
1 parent 08ed416 commit 0b925ef

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

m365/image/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ SHELL ["powershell"]
33

44

55
ARG SCUBAGEAR_VERSION=1.6.0
6-
ARG OPA_VERSION=1.6.0
6+
ARG OPA_VERSION=1.9.0
77
# Get static URL for current version: curl -s -D- https://aka.ms/downloadazcopy-v10-windows | grep ^Location
88
# https://learn.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-v10?tabs=dnf#obtain-a-static-download-link
9-
ARG AZCOPY_URL=https://azcopyvnext-awgzd8g7aagqhzhe.b02.azurefd.net/releases/release-10.29.1-20250515/azcopy_windows_amd64_10.29.1.zip
9+
ARG AZCOPY_URL=https://github.com/Azure/azure-storage-azcopy/releases/download/v10.30.1/azcopy_windows_amd64_10.30.1.zip
1010

1111
LABEL scubagear_version=${SCUBAGEAR_VERSION}
1212

m365/terraform/env/example/provider.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ terraform {
33
required_providers {
44
azurerm = {
55
source = "hashicorp/azurerm"
6-
version = "~> 4.22.0"
6+
version = "~> 4.46.0"
77
}
88
azuread = {
99
source = "hashicorp/azuread"
10-
version = "~> 3.1.0"
10+
version = "~> 3.6.0"
1111
}
1212
}
1313

m365/terraform/modules/app/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ resource "azurerm_key_vault" "vault" {
1818
enabled_for_deployment = false
1919
enabled_for_disk_encryption = false
2020
enabled_for_template_deployment = false
21-
enable_rbac_authorization = false
21+
rbac_authorization_enabled = false
2222

2323
dynamic "network_acls" {
2424
for_each = var.allowed_access_ips == null && var.aci_subnet_id == null ? [] : [1]

0 commit comments

Comments
 (0)