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"ecl_compute_volume_attach_v2" {
source="./modules/ecl/r/ecl_compute_volume_attach_v2"# device - (optional) is a type of stringdevice=null# region - (optional) is a type of stringregion=null# server_id - (required) is a type of stringserver_id=null# volume_id - (required) is a type of stringvolume_id=nulltimeouts=[{
create =null
delete =null
}]
}
resource"ecl_compute_volume_attach_v2""this" {
# device - (optional) is a type of stringdevice=var.device# region - (optional) is a type of stringregion=var.region# server_id - (required) is a type of stringserver_id=var.server_id# volume_id - (required) is a type of stringvolume_id=var.volume_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"]
}
}
}