Hi, I am trying to launch a simple VM on AWS using Brooklyn . I used the following blueprints: Blueprint1:
name: simple-vm > location: > jclouds:aws-ec2:us-west-1 > services: > - type: brooklyn.entity.basic.EmptySoftwareProcess > name: VM > provisioning.properties: > minRam: 1024mb > minCores: 4 > minDisk: 1gb Blueprint 2: name: simple-vm > location: > jclouds:aws-ec2:us-west-1 > services: > - type: brooklyn.entity.basic.EmptySoftwareProcess > name: VM > provisioning.properties: > minRam: 1024mb > minCores: 4 > minDisk: 0 Brooklyn launched ubuntu instance for both the blueprints but it selected m1.small flavour of instance. How does the image selection logic work? why did it not select other instance types ( say t2.micro) for blueprint 2 ? or in other words How can I specify the instance flavours through blueprints ? ( By flavour I mean AWS Instance types) Can someone please provide link to the documentation which has details of this ? Thanks,
