Created
April 18, 2020 17:30
-
-
Save hasancc/2c637d57e0ad7bd0f4653382bc12348d to your computer and use it in GitHub Desktop.
Install Rsyslog 8 on Elastic Beanstalk
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
commands: | |
01_install_rsyslog: | |
command: yum install rsyslog --disablerepo=amzn-main -y | |
02_install_rsyslog-gnutls: | |
command: yum install rsyslog-gnutls --disablerepo=amzn-main -y | |
03_install_rsyslog-elasticsearch: | |
command: yum install rsyslog-elasticsearch --disablerepo=amzn-main -y | |
files: | |
"/etc/yum.repos.d/rsyslog.repo": | |
mod: "000644" | |
owner: root | |
group: root | |
content: | | |
[v8-stable] | |
name=Adiscon CentOS-6 - local packages for \$basearch | |
baseurl=http://rpms.adiscon.com/v8-stable/epel-6/\$basearch | |
enabled=1 | |
gpgcheck=0 | |
gpgkey=http://rpms.adiscon.com/RPM-GPG-KEY-Adiscon | |
protect=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment