Skip to content

Commit

Permalink
Allow multiple provider networks
Browse files Browse the repository at this point in the history
  • Loading branch information
antoine-roux committed Mar 24, 2022
1 parent da2d37a commit d0ff37b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/services/openstack/openstack.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -270,11 +270,11 @@ export class OpenstackService implements CloudProvider {
name: group
}
}),
networks: [
networks: this._network.addressProviderUUID.split(',').map((uuid) => (
{
uuid: this._network.addressProviderUUID
uuid: uuid
}
],
)),
metadata,
user_data: Buffer.from(bootCommand).toString('base64')
}
Expand Down

0 comments on commit d0ff37b

Please sign in to comment.