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_databricks_workspace" {
source="./modules/azurerm/r/azurerm_databricks_workspace"# location - (required) is a type of stringlocation=null# managed_resource_group_name - (optional) is a type of stringmanaged_resource_group_name=null# name - (required) is a type of stringname=null# resource_group_name - (required) is a type of stringresource_group_name=null# sku - (required) is a type of stringsku=null# tags - (optional) is a type of map of stringtags={}
custom_parameters=[{
no_public_ip =null
private_subnet_name =null
public_subnet_name =null
virtual_network_id =null
}]
timeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_databricks_workspace""this" {
# location - (required) is a type of stringlocation=var.location# managed_resource_group_name - (optional) is a type of stringmanaged_resource_group_name=var.managed_resource_group_name# 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 - (required) is a type of stringsku=var.sku# tags - (optional) is a type of map of stringtags=var.tagsdynamic"custom_parameters" {
for_each=var.custom_parameterscontent {
# no_public_ip - (optional) is a type of boolno_public_ip=custom_parameters.value["no_public_ip"]
# private_subnet_name - (optional) is a type of stringprivate_subnet_name=custom_parameters.value["private_subnet_name"]
# public_subnet_name - (optional) is a type of stringpublic_subnet_name=custom_parameters.value["public_subnet_name"]
# virtual_network_id - (optional) is a type of stringvirtual_network_id=custom_parameters.value["virtual_network_id"]
}
}
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"]
}
}
}