diff --git a/cmd/step-pkcs11-init/main.go b/cmd/step-pkcs11-init/main.go index 4f32107a..c0ac997e 100644 --- a/cmd/step-pkcs11-init/main.go +++ b/cmd/step-pkcs11-init/main.go @@ -119,19 +119,6 @@ func main() { fatal(err) } - kmsPin := u.Pin() - if c.Pin == "" && kmsPin != "" { - c.Pin = kmsPin - } - - if c.Pin == "" { - pin, err := ui.PromptPassword("What is the PKCS#11 PIN?") - if err != nil { - fatal(err) - } - c.Pin = string(pin) - } - k, err := kms.New(context.Background(), apiv1.Options{ Type: string(apiv1.PKCS11), URI: c.KMS,