Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
VimukthiPerera committed Nov 19, 2024
1 parent c999b2d commit d3057a6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 deletions.
1 change: 0 additions & 1 deletion modules/azurerm/Synapse-Workspace/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
#
# --------------------------------------------------------------------------------------


output "id" {
description = "The ID of the Synapse Workspace"
value = azurerm_synapse_workspace.synapse.id
Expand Down
1 change: 0 additions & 1 deletion modules/azurerm/Synapse-Workspace/synapse_workspace.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,5 @@ resource "azurerm_synapse_workspace" "synapse_workspace" {
sql_administrator_login_password = var.sql_administrator_login_password
managed_virtual_network_enabled = var.managed_virtual_network_enabled
data_exfiltration_protection_enabled = var.data_exfiltration_protection_enabled
purview_id = var.purview_id
tags = var.tags
}
10 changes: 2 additions & 8 deletions modules/azurerm/Synapse-Workspace/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,19 +52,13 @@ variable "sql_administrator_login_password" {
variable "managed_virtual_network_enabled" {
description = "Enable or disable Managed Virtual Network for the Synapse Workspace"
type = bool
default = true
default = false
}

variable "data_exfiltration_protection_enabled" {
description = "Enable or disable data exfiltration protection"
type = bool
default = true
}

variable "purview_id" {
description = "The ID of the Purview account to be associated with the Synapse Workspace"
type = string
default = null
default = false
}

variable "tags" {
Expand Down

0 comments on commit d3057a6

Please sign in to comment.