using block_device_mapping, I can easily add EBS storage to the instance(s) 
like this:


ec2.block_device_mapping = [
>     
>     {
>       'DeviceName'              => "/dev/sda1",
>       'VirtualName'             => 'root',
>       'Ebs.VolumeSize'          => 30,
>       'Ebs.DeleteOnTermination' => true
>      },
>      {
>        'DeviceName'              => '/dev/sdf',
>        'VirtualName'             => 'media',
>        'Ebs.VolumeSize'          => 100,
>        'Ebs.DeleteOnTermination' => true
>      }
> ]


but like root, it doesn't mount   the extra volume automatically. So pretty 
much useless until I login to the node, create a file system and mount it 
manually. Is there a [vagrant] way to automate this? Or how can I do this? 

Best!  

-- 
You received this message because you are subscribed to the Google Groups 
"Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to