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
{{ message }}
This repository has been archived by the owner on Mar 25, 2018. It is now read-only.
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?
The text was updated successfully, but these errors were encountered:
allow jclouds to create nodes it cannot access by group (the marker group is used for group naming)
complete code to use TagApi for group instead of marker security groups.
The first option would ripple disaster through the codebase at least in the short term. The latter is much nicer, provided the service you are using supports tags. Does it? Which service are you using? Does your account allow tagging?
We would prefer 2, this is a problem with Eucalyptus as well, currently we are chasing a bug in Eucalyptus that gets triggered when the marker group gets created and rules added, https://eucalyptus.atlassian.net/browse/EUCA-5668 , with Eucalyptus 3.3.0 tagging is supported so an alternative could be to group nodes based on a tag.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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?
The text was updated successfully, but these errors were encountered: