Skip to content

Commit

Permalink
Fixing typo - missing quote
Browse files Browse the repository at this point in the history
Missing quote broke terraform syntax
  • Loading branch information
BenResTech authored Oct 8, 2021
1 parent a9796ca commit 613100f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/sql-azure/sql_auditing_log_analytics/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ resource "azurerm_monitor_diagnostic_setting" "example" {
}

resource "azurerm_mssql_database_extended_auditing_policy" "example" {
database_id = ${azurerm_mssql_server.example.id}/databases/master"
database_id = "${azurerm_mssql_server.example.id}/databases/master"
log_monitoring_enabled = true
}

Expand Down

0 comments on commit 613100f

Please sign in to comment.