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"oci_datascience_notebook_session" {
source="./modules/oci/r/oci_datascience_notebook_session"# compartment_id - (required) is a type of stringcompartment_id=null# defined_tags - (optional) is a type of map of stringdefined_tags={}
# display_name - (optional) is a type of stringdisplay_name=null# freeform_tags - (optional) is a type of map of stringfreeform_tags={}
# project_id - (required) is a type of stringproject_id=null# state - (optional) is a type of stringstate=nullnotebook_session_configuration_details=[{
block_storage_size_in_gbs =null
shape =null
subnet_id =null
}]
timeouts=[{
create =null
delete =null
update =null
}]
}
resource"oci_datascience_notebook_session""this" {
# compartment_id - (required) is a type of stringcompartment_id=var.compartment_id# defined_tags - (optional) is a type of map of stringdefined_tags=var.defined_tags# display_name - (optional) is a type of stringdisplay_name=var.display_name# freeform_tags - (optional) is a type of map of stringfreeform_tags=var.freeform_tags# project_id - (required) is a type of stringproject_id=var.project_id# state - (optional) is a type of stringstate=var.statedynamic"notebook_session_configuration_details" {
for_each=var.notebook_session_configuration_detailscontent {
# block_storage_size_in_gbs - (optional) is a type of numberblock_storage_size_in_gbs=notebook_session_configuration_details.value["block_storage_size_in_gbs"]
# shape - (required) is a type of stringshape=notebook_session_configuration_details.value["shape"]
# subnet_id - (required) is a type of stringsubnet_id=notebook_session_configuration_details.value["subnet_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"]
# update - (optional) is a type of stringupdate=timeouts.value["update"]
}
}
}