You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"azurerm_machine_learning_workspace" {
source="./modules/azurerm/r/azurerm_machine_learning_workspace"# application_insights_id - (required) is a type of stringapplication_insights_id=null# container_registry_id - (optional) is a type of stringcontainer_registry_id=null# description - (optional) is a type of stringdescription=null# friendly_name - (optional) is a type of stringfriendly_name=null# high_business_impact - (optional) is a type of boolhigh_business_impact=null# key_vault_id - (required) is a type of stringkey_vault_id=null# location - (required) is a type of stringlocation=null# name - (required) is a type of stringname=null# resource_group_name - (required) is a type of stringresource_group_name=null# sku_name - (optional) is a type of stringsku_name=null# storage_account_id - (required) is a type of stringstorage_account_id=null# tags - (optional) is a type of map of stringtags={}
identity=[{
principal_id =null
tenant_id =null
type =null
}]
timeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_machine_learning_workspace""this" {
# application_insights_id - (required) is a type of stringapplication_insights_id=var.application_insights_id# container_registry_id - (optional) is a type of stringcontainer_registry_id=var.container_registry_id# description - (optional) is a type of stringdescription=var.description# friendly_name - (optional) is a type of stringfriendly_name=var.friendly_name# high_business_impact - (optional) is a type of boolhigh_business_impact=var.high_business_impact# key_vault_id - (required) is a type of stringkey_vault_id=var.key_vault_id# location - (required) is a type of stringlocation=var.location# name - (required) is a type of stringname=var.name# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# sku_name - (optional) is a type of stringsku_name=var.sku_name# storage_account_id - (required) is a type of stringstorage_account_id=var.storage_account_id# tags - (optional) is a type of map of stringtags=var.tagsdynamic"identity" {
for_each=var.identitycontent {
# type - (required) is a type of stringtype=identity.value["type"]
}
}
dynamic"timeouts" {
for_each=var.timeoutscontent {
# create - (optional) is a type of stringcreate=timeouts.value["create"]
# delete - (optional) is a type of stringdelete=timeouts.value["delete"]
# read - (optional) is a type of stringread=timeouts.value["read"]
# update - (optional) is a type of stringupdate=timeouts.value["update"]
}
}
}