Skip to content

Commit

Permalink
Core key vault firewall should not be set to "Allow public access fro…
Browse files Browse the repository at this point in the history
…m all networks" #4250
  • Loading branch information
jonnyry committed Jan 6, 2025
1 parent 5f27bae commit 6acf7f6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ ENHANCEMENTS:
* Upgrade Python version from 3.8 to 3.12 ([#3949](https://github.com/microsoft/AzureTRE/issues/3949))Upgrade Python version from 3.8 to 3.12 (#3949)
* Disable storage account key usage ([[#4227](https://github.com/microsoft/AzureTRE/issues/4227)])
* Update Guacamole dependencies ([[#4232](https://github.com/microsoft/AzureTRE/issues/4232)])
* Core key vault firewall should not be set to "Allow public access from all networks" ([#4250](https://github.com/microsoft/AzureTRE/issues/4250))

BUG FIXES:
* Update KeyVault references in API to use the version so Terraform cascades the update ([#4112](https://github.com/microsoft/AzureTRE/pull/4112))
Expand Down
5 changes: 5 additions & 0 deletions core/terraform/keyvault.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ resource "azurerm_key_vault" "kv" {
purge_protection_enabled = var.kv_purge_protection_enabled
tags = local.tre_core_tags

network_acls {
bypass = "AzureServices"
default_action = var.enable_local_debugging ? "Allow" : "Deny"
}

lifecycle { ignore_changes = [access_policy, tags] }
}

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.11.15"
__version__ = "0.11.16"

0 comments on commit 6acf7f6

Please sign in to comment.