diff --git a/http/sys_init.go b/http/sys_init.go index 049dd38c6f..3bacc7c5e9 100644 --- a/http/sys_init.go +++ b/http/sys_init.go @@ -12,7 +12,7 @@ func handleSysInit(core *vault.Core) http.Handler { switch r.Method { case "GET": handleSysInitGet(core, w, r) - case "PUT": + case "PUT", "POST": handleSysInitPut(core, w, r) default: respondError(w, http.StatusMethodNotAllowed, nil)