fix(core): update

This commit is contained in:
Philipp Kunz 2024-02-17 21:58:10 +01:00
parent 4a722b79b7
commit 9174571ea4
2 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@apiclient.xyz/hetznercloud',
version: '1.0.9',
version: '1.0.10',
description: 'an unofficial api client for the hetzner cloud api'
}

View File

@ -9,6 +9,7 @@ export class HetznerServer {
optionsArg: {
name: string;
location: 'nbg1';
labels: {[key: string]: string},
}
) {
const server = new HetznerServer(hetznerAccountRefArg);
@ -19,7 +20,7 @@ export class HetznerServer {
image: 'ubuntu-22.04',
server_type: 'cx11',
start_after_create: true,
labels: {},
labels: optionsArg.labels || {} as any,
location: optionsArg.location,
public_net: {
enable_ipv4: true,