Hi,
I have a scenario, where I am running inspec on multiple systems using SSH. is there a way i can get the test reports with the server name?
the title I get is default, i.e. "Rspec Code examples"
As of now I am doing an input of the hostname so that I see that in the html report
something like this
control 'hostname check' do
describe host(input('hostname')) do
it { should be_reachable }
it { should be_resolvable }
end
end
Can we in anyway customise the html report ?
Regards,
A