Skip to content

Commit

Permalink
Revert "Fixed issue executing AIRS launchpad" (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudlh authored Sep 21, 2020
1 parent a991188 commit dc3d0dd
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 139 deletions.
21 changes: 0 additions & 21 deletions azure_aml.tf

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -134,4 +134,4 @@ role_mapping = {
}
}
}
}
}
14 changes: 0 additions & 14 deletions modules/analytics/azure_aml/main.tf

This file was deleted.

4 changes: 0 additions & 4 deletions modules/analytics/azure_aml/output.tf

This file was deleted.

12 changes: 0 additions & 12 deletions modules/analytics/azure_aml/variables.tf

This file was deleted.

84 changes: 0 additions & 84 deletions modules/analytics/azure_aml/workspace.tf

This file was deleted.

6 changes: 3 additions & 3 deletions modules/analytics/synapse/workspace.tf
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# naming convention
resource "azurecaf_name" "wp" {
name = var.settings.name
resource_type = "azurerm_synapse_workspace"
resource_type = "azurerm_machine_learning_workspace"
prefixes = [var.global_settings.prefix]
random_length = var.global_settings.random_length
clean_input = true
passthrough = var.global_settings.passthrough
}

# synapse workspace
resource "azurerm_synapse_workspace" "ws" {
resource "azurerm_synapse_workspace" "wp" {
name = azurecaf_name.wp.result
resource_group_name = var.resource_group_name
location = var.location
Expand Down Expand Up @@ -67,4 +67,4 @@ resource "azurerm_key_vault_secret" "synapse_rg_name" {
name = format("%s-synapse-resource-group-name", azurerm_synapse_workspace.wp.name)
value = var.resource_group_name
key_vault_id = var.keyvault_id
}
}

0 comments on commit dc3d0dd

Please sign in to comment.