I used swagger json as an input to swagger codegen cli which generated jmeter scripts for me. However, the jmeter scripts do not have header manager and bearer token authorization. Swagger json has the security definition
Swagger json security definition -
"securityDefinitions":{"bearer":{"type":"apiKey", "name":"Authorization", "in": "header"}}
"security":[{"bearer":[]}]
Result should have had the header manager with bearer authorization token but its not there