-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated SecurityRiskAdvisors plugin with mine
- Loading branch information
Showing
9 changed files
with
642 additions
and
1,888 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM jruby | ||
|
||
RUN apt-get update && apt-get upgrade -y | ||
|
||
RUN find / | egrep \/bin\/bundle$ | ||
|
||
|
||
|
||
RUN mkdir -p /opt/okta_system_log | ||
COPY /* /opt/okta_system_log/ | ||
WORKDIR /opt/okta_system_log | ||
RUN ls -la /opt/okta_system_log | ||
|
||
|
||
RUN bundle install | ||
|
||
RUN mkdir -p /opt/efs/plugins |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM 383707766587.dkr.ecr.ap-southeast-2.amazonaws.com/kelsiem.com/logstash-input-okta_system_log:base | ||
|
||
RUN find / | egrep \/bin\/bundle$ | ||
|
||
|
||
|
||
RUN mkdir -p /opt/okta_system_log | ||
|
||
|
||
COPY / /opt/okta_system_log/ | ||
WORKDIR /opt/okta_system_log | ||
RUN ls -la /opt/okta_system_log | ||
|
||
|
||
RUN bundle install | ||
|
||
RUN bundle exec rspec | ||
RUN gem build logstash-input-okta_system_log.gemspec | ||
|
||
|
||
RUN gem unpack logstash-input-okta_system_log-0.1.0.gem | ||
RUN ls -laR logstash-input-okta_system_log-0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM 383707766587.dkr.ecr.ap-southeast-2.amazonaws.com/kelsiem.com/logstash-input-okta_system_log:develop | ||
|
||
|
||
FROM 383707766587.dkr.ecr.ap-southeast-2.amazonaws.com/kelsiem.com/kelsiemlogstash | ||
WORKDIR /usr/share/logstash/bin | ||
COPY --from=0 /opt/okta_system_log/logstash-input-okta_system_log-0.1.0.gem /usr/share/logstash/bin | ||
RUN ls -la | ||
RUN /usr/share/logstash/bin/logstash-plugin install logstash-input-okta_system_log-0.1.0.gem | ||
|
||
WORKDIR /home/ec2-user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM 383707766587.dkr.ecr.ap-southeast-2.amazonaws.com/kelsiem.com/logstash-input-okta_system_log:test | ||
|
||
WORKDIR /home/ec2-user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
## 1.0.0 | ||
- | ||
## 0.9.0 | ||
- Finalizes plugin for distribution using logstash-input-file style sincedb | ||
## 0.1.0 | ||
|
Oops, something went wrong.