Skip to content

Commit c06c66d

Browse files
fix: stray variable
1 parent 841f345 commit c06c66d

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

.github/workflows/test-deploy.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,5 @@ jobs:
3838
terraform_wrapper: false
3939
terraform_version: 1.11.4
4040

41-
- name: Terraform init
42-
run: make ${TARGET_ENV} terraform-init
43-
4441
- name: Terraform plan
4542
run: make ${TARGET_ENV} terraform-plan

infrastructure/modules/infra/networking.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ data "azurerm_virtual_network" "hub" {
4949

5050
provider = azurerm.hub
5151

52-
name = module.hub_config.names.virtual-network
52+
name = "VNET-${var.hub}-uks-hub"
5353
resource_group_name = local.hub_vnet_rg_name
5454
}
5555

infrastructure/terraform/main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ module "infra" {
1414
environment = var.env_config
1515
features = var.features
1616
hub = var.hub
17-
private_networking = var.private_networking
1817
protect_keyvault = var.protect_keyvault
1918
vnet_address_space = var.vnet_address_space
2019
}

0 commit comments

Comments
 (0)