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"opc_compute_storage_attachment" {
source="./modules/opc/r/opc_compute_storage_attachment"# index - (required) is a type of numberindex=null# instance - (required) is a type of stringinstance=null# storage_volume - (required) is a type of stringstorage_volume=nulltimeouts=[{
create =null
delete =null
}]
}
resource"opc_compute_storage_attachment""this" {
# index - (required) is a type of numberindex=var.index# instance - (required) is a type of stringinstance=var.instance# storage_volume - (required) is a type of stringstorage_volume=var.storage_volumedynamic"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"]
}
}
}