Skip to content

Commit 638d5f3

Browse files
author
Lee Myring
authored
Create SECURITY.md (#21)
* Create SECURITY.md * Add rubocop badge * Update MIT licence badge * Fix code scanning alerts
1 parent 2f0dce9 commit 638d5f3

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Log Aggregation using Elasticsearch, Fluentd and Kibana
22

3+
![Rubocop](https://github.com/deploymentking/efk/workflows/Rubocop/badge.svg)
34
[![Build Status](https://travis-ci.org/deploymentking/efk.svg?branch=master)](https://travis-ci.org/deploymentking/efk)
45
[![Coverage Status](https://coveralls.io/repos/github/deploymentking/efk/badge.svg?branch=master)](https://coveralls.io/github/deploymentking/efk?branch=master)
5-
[![MIT Licence](https://badges.frapsoft.com/os/mit/mit.svg?v=103)](https://opensource.org/licenses/mit-license.php)
6+
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
67

78
This project allows for the quick deployment of a fully functioning EFK Stack.
89
- (E)lasticsearch

SECURITY.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
Use this section to tell people about which versions of your project are
6+
currently being supported with security updates.
7+
8+
| Version | Supported |
9+
| ------- | ------------------ |
10+
| 5.1.x | :white_check_mark: |
11+
| 5.0.x | :x: |
12+
| 4.0.x | :white_check_mark: |
13+
| < 4.0 | :x: |
14+
15+
## Reporting a Vulnerability
16+
17+
Use this section to tell people how to report a vulnerability.
18+
19+
Tell them where to go, how often they can expect to get an update on a
20+
reported vulnerability, what to expect if the vulnerability is accepted or
21+
declined, etc.

spec/elasticsearch_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
its(:arch) { should eq 'amd64' }
1818
its(:os) { should eq 'linux' }
1919

20-
describe docker_run(described_image, tag: 'efk_elasticsearch', env: {"discovery.type" => "single-node"}) do
20+
describe docker_run(described_image, tag: 'efk_elasticsearch', env: { 'discovery.type' => 'single-node' }) do
2121
it 'is a Linux distro' do
2222
expect(command('uname').stdout).to include 'Linux'
2323
end

0 commit comments

Comments
 (0)