Skip to content

Commit

Permalink
fix: fixed tf checks issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mamrajyadav committed Jan 2, 2024
1 parent 6dedfc2 commit 09cf297
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,17 @@ output "vnet_rg_name" {
}

output "ddos_protection_plan_id" {
value = var.enable_ddos_pp && var.enable ? azurerm_network_ddos_protection_plan.example[0].id : null
value = var.enable_ddos_pp && var.enable ? azurerm_network_ddos_protection_plan.example[0].id : null
description = "The ID of the DDoS Protection Plan"
}

output "network_watcher_id" {
value = var.enable && var.enable_network_watcher ? azurerm_network_watcher.flow_log_nw[0].id : null
value = var.enable && var.enable_network_watcher ? azurerm_network_watcher.flow_log_nw[0].id : null
description = "The ID of the Network Watcher."
}

output "network_watcher_name" {
value = var.enable && var.enable_network_watcher ? azurerm_network_watcher.flow_log_nw[0].name : null
value = var.enable && var.enable_network_watcher ? azurerm_network_watcher.flow_log_nw[0].name : null
description = "The name of Network Watcher deployed."
}

Expand Down

0 comments on commit 09cf297

Please sign in to comment.