hello I am stuck on some proviosing and relationship building around amazon ebs and instances.
using rails console I can simply
vm = Vm.find_by_name(“VMNAME”)
vm.cloud_volumes
vol = vm.cloud_volumes.first
vol.create_volume_snapshot(name: “idtest”)
and this all works fine.
however using automate I can not seem to get this to work.
I have tried all kinds of different ways to load the vm object and not only is the cloud_volumes method not available I can’t seem to output any actual volume info.