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_file_storage_export_set" {
source="./modules/oci/r/oci_file_storage_export_set"# display_name - (optional) is a type of stringdisplay_name=null# max_fs_stat_bytes - (optional) is a type of stringmax_fs_stat_bytes=null# max_fs_stat_files - (optional) is a type of stringmax_fs_stat_files=null# mount_target_id - (required) is a type of stringmount_target_id=nulltimeouts=[{
create =null
delete =null
update =null
}]
}
resource"oci_file_storage_export_set""this" {
# display_name - (optional) is a type of stringdisplay_name=var.display_name# max_fs_stat_bytes - (optional) is a type of stringmax_fs_stat_bytes=var.max_fs_stat_bytes# max_fs_stat_files - (optional) is a type of stringmax_fs_stat_files=var.max_fs_stat_files# mount_target_id - (required) is a type of stringmount_target_id=var.mount_target_iddynamic"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"]
}
}
}