Skip to content

Commit 6dbb0d4

Browse files
authored
Update module version refs (#11)
1 parent 08100f7 commit 6dbb0d4

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

infrastructure/modules/azure-container-registry/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ resource "azurerm_container_registry" "acr" {
1919
module "private_endpoint_container_registry" {
2020
count = var.private_endpoint_properties.private_endpoint_enabled ? 1 : 0
2121

22-
source = "git::https://github.com/NHSDigital/dtos-devops-templates.git//infrastructure/modules/private-endpoint?ref=feat/DTOSS-3386-Private-Endpoint-Updates"
22+
source = "git::https://github.com/NHSDigital/dtos-devops-templates.git//infrastructure/modules/private-endpoint?ref=08100f7db2da6c0f64f327d15477a217a7ed4cd9"
2323

2424
name = "${var.name}-private-endpoint"
2525
resource_group_name = var.private_endpoint_properties.private_endpoint_resource_group_name

infrastructure/modules/azure-sql-server/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ resource "azurerm_mssql_firewall_rule" "azurepassthrough" {
3737
module "private_endpoint_sql_server" {
3838
count = var.private_endpoint_properties.private_endpoint_enabled ? 1 : 0
3939

40-
source = "git::https://github.com/NHSDigital/dtos-devops-templates.git//infrastructure/modules/private-endpoint?ref=feat/DTOSS-3386-Private-Endpoint-Updates"
40+
source = "git::https://github.com/NHSDigital/dtos-devops-templates.git//infrastructure/modules/private-endpoint?ref=08100f7db2da6c0f64f327d15477a217a7ed4cd9"
4141

4242
name = "${var.name}-sql-private-endpoint"
4343
resource_group_name = var.private_endpoint_properties.private_endpoint_resource_group_name

infrastructure/modules/function-app/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ resource "azurerm_linux_function_app" "function_app" {
5454
module "private_endpoint" {
5555
count = var.private_endpoint_properties.private_endpoint_enabled ? 1 : 0
5656

57-
source = "git::https://github.com/NHSDigital/dtos-devops-templates.git//infrastructure/modules/private-endpoint?ref=feat/DTOSS-3386-Private-Endpoint-Updates"
57+
source = "git::https://github.com/NHSDigital/dtos-devops-templates.git//infrastructure/modules/private-endpoint?ref=08100f7db2da6c0f64f327d15477a217a7ed4cd9"
5858

5959
name = "${var.function_app_name}-private-endpoint"
6060
resource_group_name = var.private_endpoint_properties.private_endpoint_resource_group_name

infrastructure/modules/key-vault/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ resource "azurerm_key_vault" "keyvault" {
3737
module "private_endpoint_keyvault" {
3838
count = var.private_endpoint_properties.private_endpoint_enabled ? 1 : 0
3939

40-
source = "git::https://github.com/NHSDigital/dtos-devops-templates.git//infrastructure/modules/private-endpoint?ref=feat/DTOSS-3386-Private-Endpoint-Updates"
40+
source = "git::https://github.com/NHSDigital/dtos-devops-templates.git//infrastructure/modules/private-endpoint?ref=08100f7db2da6c0f64f327d15477a217a7ed4cd9"
4141

4242
name = "${var.name}-azure-keyvault-private-endpoint"
4343
resource_group_name = var.private_endpoint_properties.private_endpoint_resource_group_name

infrastructure/modules/storage/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ resource "azurerm_storage_container" "container" {
3030
module "private_endpoint_blob_storage" {
3131
count = var.private_endpoint_properties.private_endpoint_enabled ? 1 : 0
3232

33-
source = "git::https://github.com/NHSDigital/dtos-devops-templates.git//infrastructure/modules/private-endpoint?ref=feat/DTOSS-3386-Private-Endpoint-Updates"
33+
source = "git::https://github.com/NHSDigital/dtos-devops-templates.git//infrastructure/modules/private-endpoint?ref=08100f7db2da6c0f64f327d15477a217a7ed4cd9"
3434

3535
name = "${var.name}-blob-private-endpoint"
3636
resource_group_name = var.private_endpoint_properties.private_endpoint_resource_group_name
@@ -55,7 +55,7 @@ module "private_endpoint_blob_storage" {
5555
module "private_endpoint_queue_storage" {
5656
count = var.private_endpoint_properties.private_endpoint_enabled ? 1 : 0
5757

58-
source = "git::https://github.com/NHSDigital/dtos-devops-templates.git//infrastructure/modules/private-endpoint?ref=feat/DTOSS-3386-Private-Endpoint-Updates"
58+
source = "git::https://github.com/NHSDigital/dtos-devops-templates.git//infrastructure/modules/private-endpoint?ref=08100f7db2da6c0f64f327d15477a217a7ed4cd9"
5959

6060
name = "${var.name}-queue-private-endpoint"
6161
resource_group_name = var.private_endpoint_properties.private_endpoint_resource_group_name

0 commit comments

Comments
 (0)