Security Groups(Marker security groups) are getting generated even after specifying existing security group names in EC2TemplateOptions. I'm using the following code snippet to set the security group names:
template.getOptions().as(EC2TemplateOptions.class).securityGroups(group1);
The AWS keys I'm using doesn't have permissions to create a security group. So, I'm unable to launch an instance using jclouds as it is trying to create a marker security group before launching the instance. Is there any work around to prevent creation of marker security group?
I've tested this on jclouds-1.5.7 . Is this fixed in latest builds?
Security Groups(Marker security groups) are getting generated even after specifying existing security group names in EC2TemplateOptions. I'm using the following code snippet to set the security group names:
template.getOptions().as(EC2TemplateOptions.class).securityGroups(group1);
The AWS keys I'm using doesn't have permissions to create a security group. So, I'm unable to launch an instance using jclouds as it is trying to create a marker security group before launching the instance. Is there any work around to prevent creation of marker security group?
I've tested this on jclouds-1.5.7 . Is this fixed in latest builds?