We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7aa510e commit c24db6cCopy full SHA for c24db6c
1 file changed
internal/target/incus.go
@@ -92,11 +92,12 @@ func (t *InternalIncusTarget) Connect(ctx context.Context) error {
92
}
93
94
t.incusConnectionArgs = &incus.ConnectionArgs{
95
- AuthType: authType,
96
- TLSClientKey: t.TLSClientKey,
97
- TLSClientCert: t.TLSClientCert,
98
- OIDCTokens: t.OIDCTokens,
99
- Proxy: func(r *http.Request) (*url.URL, error) { return nil, nil },
+ AuthType: authType,
+ TLSClientKey: t.TLSClientKey,
+ TLSClientCert: t.TLSClientCert,
+ OIDCTokens: t.OIDCTokens,
+ OIDCNonInteractive: true,
100
+ Proxy: func(r *http.Request) (*url.URL, error) { return nil, nil },
101
102
103
var serverCert *x509.Certificate
0 commit comments