fix: add creation password
Some checks failed
CI / build (push) Failing after 3m45s
CI / lint (push) Failing after 3m20s
CI / pkl-validate (push) Successful in 11s
CI / integration-tests (push) Has been skipped
CI / conformance-tests (latest) (push) Has been skipped

This commit is contained in:
2026-02-12 23:14:19 +01:00
parent 476906fe97
commit 959257eac8
6 changed files with 8 additions and 0 deletions

1
lxc.go
View File

@@ -69,6 +69,7 @@ func (p *Plugin) CreateLXC(ctx context.Context, req *resource.CreateRequest) (*r
urlparams := url.Values{
"vmid": {props.VMID},
"ostemplate": {props.OSTemplate},
"password": {props.Password},
"hostname": {props.Hostname},
"cores": {strconv.Itoa(props.Cores)},
"memory": {strconv.Itoa(props.Memory)},