Hi,
When I create instances in the cloud I create a template and then I set the
ports that must be opened. Something like:
Template template = computeService.templateBuilder()
.locationId(ZONE)
.imageId(String.format("%s/%s", zone, ami)
.hardwareId(hardware)
.build();
template.getOptions().inboundPorts(ports);
Set<? extends NodeMetadata> nodes =
computeService.createNodesInGroup(name, 1, template);
Jclouds creates a new security group named "jclouds#<first three characters
of instance name>"
This name is not good enough for our case, and it is messing all the
security groups. How could I override the default security group name ?
Thanks in advance,
Ruben