This file contains hidden or 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
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Principal": { | |
"Service": "lambda.amazonaws.com" | |
}, | |
"Action": "sts:AssumeRole" | |
} |
This file contains hidden or 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
{ | |
"Version": "2012-10-17", | |
"Statement": [{ | |
"Effect": "Allow", | |
"Action": [ | |
"dynamodb:BatchGetItem", | |
"dynamodb:GetItem", | |
"dynamodb:Query", | |
"dynamodb:Scan", | |
"dynamodb:BatchWriteItem", |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
Demo AWS UG PE - Step Functions - Day 1 | |
Paso 1: Step Functions Demo - State Language - awsugperu | |
{ | |
"Comment": "A simple AWS Step Functions state machine that automates a call center support session.", | |
"StartAt": "Open Case", | |
"States": { | |
"Open Case": { | |
"Type": "Task", |
This file contains hidden or 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
paso 1: instalar serverless framework | |
sudo npm i -g serverless | |
paso 2: crear un proyecto vacío | |
serverless create --template aws-nodejs --path step-functions-demo | |
serverless.yml: | |
service: step-functions-demo |
This file contains hidden or 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
I will keep updating the list whenever I come accross excellent Devops related courses. | |
DevOps: | |
Beginner level: | |
DevOps Essentials (Free): https://linuxacademy.com/cp/modules/view/id/192 | |
DevSecOps Essentials (Free): https://linuxacademy.com/cp/modules/view/id/266 | |
DevOps Foundation: https://www.linkedin.com/learning/devops-foundations/welcome | |
DevOps Advance Topics: |
This file contains hidden or 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
{ | |
"region": "us-east-1", | |
"detail": { | |
"type": "UnauthorizedAccess:EC2/SSHBruteForce", | |
"resource": { | |
"resourceType": "Instance", | |
"instanceDetails": { | |
"instanceId": "i-99999999", | |
"instanceType": "m3.xlarge", | |
"launchTime": "2016-08-02T02:05:06Z", |
This file contains hidden or 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
{ | |
"region": "us-east-1", | |
"detail": { | |
"type": "UnauthorizedAccess:EC2/SSHBruteForce", | |
"resource": { | |
"resourceType": "Instance", | |
"instanceDetails": { | |
"instanceId": "i-99999999", | |
"instanceType": "m3.xlarge", | |
"launchTime": "2016-08-02T02:05:06Z", |
This file contains hidden or 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
# Get R (base) and a few dependencies for packages | |
sudo apt-get -y install r-base libapparmor1 libcurl4-gnutls-dev libxml2-dev libssl-dev | |
sudo su - -c "R -e \"install.packages('tidyverse', repos = 'http://cran.rstudio.com/')\"" | |
sudo su - -c "R -e \"install.packages('devtools', repos='http://cran.rstudio.com/')\"" | |
sudo su - -c "R -e \"devtools::install_github('daattali/shinyjs')\"" | |
sudo su - -c "R -e \"install.packages('rmarkdown', repos='http://cran.rstudio.com/')\"" | |
# install java8 | |
sudo apt install openjdk-8-jdk |
This file contains hidden or 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
#Install R and then following packages | |
#repr failed to create | |
yum install R-* | |
install.packages("evaluate", dependencies = TRUE) | |
install.packages("base64enc", dependencies = TRUE) | |
install.packages("devtools", dependencies = TRUE) | |
install_github('IRkernel/repr') | |
install.packages("dplyr", dependencies = TRUE) | |
install.packages("caret", dependencies = TRUE) | |
install.packages("repr", dependencies = TRUE) |