├── Chapter02 ├── helloworld.conf └── helloworld.js ├── Chapter03 ├── EffectiveDevOpsTemplates │ ├── ansiblebase-cf-template.py │ ├── helloworld-cf-template-part-1.py │ └── helloworld-cf-template.py └── ansible │ ├── README.md │ ├── ansible.cfg │ ├── ec2.ini │ ├── ec2.py │ ├── helloworld.yml │ ├── localhost │ └── roles │ ├── helloworld │ ├── .travis.yml │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── files │ │ ├── helloworld.conf │ │ └── helloworld.js │ ├── handlers │ │ └── main.yml │ ├── helloworld.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── tests │ │ ├── inventory │ │ └── test.yml │ └── vars │ │ └── main.yml │ └── nodejs │ ├── .travis.yml │ ├── README.md │ ├── defaults │ └── main.yml │ ├── handlers │ └── main.yml │ ├── meta │ └── main.yml │ ├── tasks │ └── main.yml │ ├── tests │ ├── inventory │ └── test.yml │ └── vars │ └── main.yml ├── Chapter04 ├── README.md ├── firstproject │ └── ec2.tf ├── fourthproject │ └── helloworldansiblepull.tf ├── secondproject │ └── helloworldec2.tf └── thirdproject │ ├── ansible.cfg │ ├── helloworld.yml │ ├── helloworldansible.tf │ ├── myinventory │ └── roles │ ├── helloworld │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── files │ │ ├── helloworld.conf │ │ └── helloworld.js │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── tests │ │ ├── inventory │ │ └── test.yml │ └── vars │ │ └── main.yml │ └── nodejs │ ├── README.md │ ├── defaults │ └── main.yml │ ├── handlers │ └── main.yml │ ├── meta │ └── main.yml │ ├── tasks │ └── main.yml │ ├── tests │ ├── inventory │ └── test.yml │ └── vars │ └── main.yml ├── Chapter05 ├── EffectiveDevOpsTemplates │ ├── README.md │ ├── ansiblebase-cf-template.py │ ├── helloworld-cf-template.py │ ├── jenkins-cf-template-part-1.py │ ├── jenkins-cf-template.py │ ├── jenkins-cf.template │ ├── nodeserver-cf-template.py │ └── nodeserver-cf.template ├── ansible │ ├── README.md │ ├── ansible.cfg │ ├── ec2.ini │ ├── ec2.py │ ├── helloworld.yml │ ├── jenkins.yml │ ├── library │ │ └── aws_codedeploy │ ├── localhost │ ├── nodeserver.yml │ └── roles │ │ ├── codedeploy │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ │ ├── helloworld │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── files │ │ │ ├── helloworld.conf │ │ │ └── helloworld.js │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ │ ├── jenkins │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ │ └── nodejs │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ └── main.yml │ │ ├── handlers │ │ └── main.yml │ │ ├── meta │ │ └── main.yml │ │ ├── tasks │ │ └── main.yml │ │ ├── tests │ │ ├── inventory │ │ └── test.yml │ │ └── vars │ │ └── main.yml ├── helloworld │ ├── Jenkinsfile │ ├── README.md │ ├── appspec.yml │ ├── helloworld.js │ ├── package.json │ ├── scripts │ │ ├── helloworld.conf │ │ ├── start.sh │ │ ├── stop.sh │ │ └── validate.sh │ └── test │ │ └── helloworld_test.js └── misc │ └── CodeDeploy-Trust.json ├── Chapter06 └── EffectiveDevOpsTemplates │ └── nodeserver-cf-template.py ├── Chapter07 ├── EffectiveDevOpsTemplates │ ├── ansiblebase-cf-template.py │ ├── ecr-repository-cf-template.py │ ├── ecs-cluster-cf-template.py │ ├── helloworld-cf-template.py │ ├── helloworld-codebuild-cf-template.py │ ├── helloworld-codepipeline-cf-template.py │ ├── helloworld-ecs-alb-cf-template.py │ ├── helloworld-ecs-service-cf-template.py │ ├── jenkins-cf-template.py │ └── nodeserver-cf-template.py └── helloworld │ ├── Dockerfile │ ├── Jenkinsfile │ ├── README.md │ ├── appspec.yml │ ├── helloworld.js │ ├── package.json │ ├── scripts │ ├── helloworld.conf │ ├── start.sh │ ├── stop.sh │ └── validate.sh │ ├── templates │ └── helloworld-ecs-service-cf.template │ └── test │ └── helloworld_test.js ├── Chapter08 ├── EffectiveDevOpsTemplates │ ├── elasticsearch-cf-template.py │ ├── firehose-cf-template.py │ ├── helloworld-ecs-alb-cf-template-part-1.py │ ├── helloworld-ecs-alb-cf-template.py │ ├── helloworld-ecs-service-cf-template.py │ ├── nodeserver-cf-template-part-1.py │ ├── nodeserver-cf-template-part-2.py │ ├── nodeserver-cf-template-part-3.py │ └── nodeserver-cf-template.py ├── ansible │ ├── README.md │ ├── ansible.cfg │ ├── ec2.ini │ ├── ec2.py │ ├── helloworld.yml │ ├── jenkins.yml │ ├── library │ │ └── aws_codedeploy │ ├── localhost │ ├── nodeserver.yml │ └── roles │ │ ├── awslogs │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── files │ │ │ └── awslogs.conf │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ │ ├── cloudwatch │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ │ ├── codedeploy │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ │ ├── helloworld │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── files │ │ │ ├── helloworld.conf │ │ │ └── helloworld.js │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ │ ├── jenkins │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ │ └── nodejs │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults │ │ └── main.yml │ │ ├── handlers │ │ └── main.yml │ │ ├── meta │ │ └── main.yml │ │ ├── tasks │ │ └── main.yml │ │ ├── tests │ │ ├── inventory │ │ └── test.yml │ │ └── vars │ │ └── main.yml └── helloworld │ ├── Dockerfile │ ├── Jenkinsfile │ ├── README.md │ ├── appspec.yml │ ├── conf │ └── logrotate │ ├── helloworld-part-1.js │ ├── helloworld.js │ ├── node_modules │ ├── .bin │ │ └── uuid │ ├── async │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── lib │ │ │ └── async.js │ │ ├── package.json │ │ └── support │ │ │ └── sync-package-managers.js │ ├── aws-sdk │ │ ├── .changes │ │ │ ├── 2.10.0.json │ │ │ ├── 2.11.0.json │ │ │ ├── 2.12.0.json │ │ │ ├── 2.13.0.json │ │ │ ├── 2.14.0.json │ │ │ ├── 2.15.0.json │ │ │ ├── 2.16.0.json │ │ │ ├── 2.17.0.json │ │ │ ├── 2.18.0.json │ │ │ ├── 2.19.0.json │ │ │ ├── 2.20.0.json │ │ │ ├── 2.21.0.json │ │ │ ├── 2.22.0.json │ │ │ ├── 2.23.0.json │ │ │ ├── 2.24.0.json │ │ │ ├── 2.25.0.json │ │ │ ├── 2.26.0.json │ │ │ ├── 2.27.0.json │ │ │ ├── 2.28.0.json │ │ │ ├── 2.29.0.json │ │ │ ├── 2.30.0.json │ │ │ ├── 2.31.0.json │ │ │ ├── 2.32.0.json │ │ │ ├── 2.33.0.json │ │ │ ├── 2.34.0.json │ │ │ ├── 2.35.0.json │ │ │ ├── 2.36.0.json │ │ │ ├── 2.37.0.json │ │ │ ├── 2.38.0.json │ │ │ ├── 2.39.0.json │ │ │ ├── 2.4.10.json │ │ │ ├── 2.4.11.json │ │ │ ├── 2.4.12.json │ │ │ ├── 2.4.13.json │ │ │ ├── 2.4.14.json │ │ │ ├── 2.4.8.json │ │ │ ├── 2.4.9.json │ │ │ ├── 2.40.0.json │ │ │ ├── 2.41.0.json │ │ │ ├── 2.42.0.json │ │ │ ├── 2.43.0.json │ │ │ ├── 2.44.0.json │ │ │ ├── 2.45.0.json │ │ │ ├── 2.46.0.json │ │ │ ├── 2.47.0.json │ │ │ ├── 2.48.0.json │ │ │ ├── 2.49.0.json │ │ │ ├── 2.5.0.json │ │ │ ├── 2.5.1.json │ │ │ ├── 2.5.2.json │ │ │ ├── 2.5.3.json │ │ │ ├── 2.5.4.json │ │ │ ├── 2.5.5.json │ │ │ ├── 2.5.6.json │ │ │ ├── 2.50.0.json │ │ │ ├── 2.51.0.json │ │ │ ├── 2.52.0.json │ │ │ ├── 2.53.0.json │ │ │ ├── 2.54.0.json │ │ │ ├── 2.55.0.json │ │ │ ├── 2.56.0.json │ │ │ ├── 2.57.0.json │ │ │ ├── 2.58.0.json │ │ │ ├── 2.59.0.json │ │ │ ├── 2.6.0.json │ │ │ ├── 2.6.1.json │ │ │ ├── 2.6.10.json │ │ │ ├── 2.6.11.json │ │ │ ├── 2.6.12.json │ │ │ ├── 2.6.13.json │ │ │ ├── 2.6.14.json │ │ │ ├── 2.6.15.json │ │ │ ├── 2.6.2.json │ │ │ ├── 2.6.3.json │ │ │ ├── 2.6.4.json │ │ │ ├── 2.6.5.json │ │ │ ├── 2.6.6.json │ │ │ ├── 2.6.7.json │ │ │ ├── 2.6.8.json │ │ │ ├── 2.6.9.json │ │ │ ├── 2.60.0.json │ │ │ ├── 2.61.0.json │ │ │ ├── 2.62.0.json │ │ │ ├── 2.63.0.json │ │ │ ├── 2.64.0.json │ │ │ ├── 2.65.0.json │ │ │ ├── 2.66.0.json │ │ │ ├── 2.67.0.json │ │ │ ├── 2.68.0.json │ │ │ ├── 2.69.0.json │ │ │ ├── 2.7.0.json │ │ │ ├── 2.7.1.json │ │ │ ├── 2.7.10.json │ │ │ ├── 2.7.11.json │ │ │ ├── 2.7.12.json │ │ │ ├── 2.7.13.json │ │ │ ├── 2.7.14.json │ │ │ ├── 2.7.15.json │ │ │ ├── 2.7.16.json │ │ │ ├── 2.7.17.json │ │ │ ├── 2.7.18.json │ │ │ ├── 2.7.19.json │ │ │ ├── 2.7.2.json │ │ │ ├── 2.7.20.json │ │ │ ├── 2.7.21.json │ │ │ ├── 2.7.22.json │ │ │ ├── 2.7.23.json │ │ │ ├── 2.7.24.json │ │ │ ├── 2.7.25.json │ │ │ ├── 2.7.26.json │ │ │ ├── 2.7.27.json │ │ │ ├── 2.7.28.json │ │ │ ├── 2.7.3.json │ │ │ ├── 2.7.4.json │ │ │ ├── 2.7.5.json │ │ │ ├── 2.7.6.json │ │ │ ├── 2.7.7.json │ │ │ ├── 2.7.8.json │ │ │ ├── 2.7.9.json │ │ │ ├── 2.70.0.json │ │ │ ├── 2.71.0.json │ │ │ ├── 2.72.0.json │ │ │ ├── 2.73.0.json │ │ │ ├── 2.74.0.json │ │ │ ├── 2.75.0.json │ │ │ ├── 2.76.0.json │ │ │ ├── 2.77.0.json │ │ │ ├── 2.78.0.json │ │ │ ├── 2.79.0.json │ │ │ ├── 2.8.0.json │ │ │ ├── 2.80.0.json │ │ │ ├── 2.81.0.json │ │ │ ├── 2.82.0.json │ │ │ ├── 2.83.0.json │ │ │ ├── 2.84.0.json │ │ │ ├── 2.85.0.json │ │ │ ├── 2.86.0.json │ │ │ ├── 2.87.0.json │ │ │ ├── 2.88.0.json │ │ │ ├── 2.89.0.json │ │ │ ├── 2.9.0.json │ │ │ ├── 2.90.0.json │ │ │ ├── 2.91.0.json │ │ │ └── 2.92.0.json │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── SERVICES.md │ │ ├── UPGRADING.md │ │ ├── apis │ │ │ ├── acm-2015-12-08.examples.json │ │ │ ├── acm-2015-12-08.min.json │ │ │ ├── acm-2015-12-08.paginators.json │ │ │ ├── apigateway-2015-07-09.examples.json │ │ │ ├── apigateway-2015-07-09.min.json │ │ │ ├── apigateway-2015-07-09.paginators.json │ │ │ ├── application-autoscaling-2016-02-06.examples.json │ │ │ ├── application-autoscaling-2016-02-06.min.json │ │ │ ├── application-autoscaling-2016-02-06.paginators.json │ │ │ ├── appstream-2016-12-01.examples.json │ │ │ ├── appstream-2016-12-01.min.json │ │ │ ├── appstream-2016-12-01.paginators.json │ │ │ ├── appstream-2016-12-01.waiters2.json │ │ │ ├── athena-2017-05-18.examples.json │ │ │ ├── athena-2017-05-18.min.json │ │ │ ├── athena-2017-05-18.paginators.json │ │ │ ├── autoscaling-2011-01-01.examples.json │ │ │ ├── autoscaling-2011-01-01.min.json │ │ │ ├── autoscaling-2011-01-01.paginators.json │ │ │ ├── batch-2016-08-10.examples.json │ │ │ ├── batch-2016-08-10.min.json │ │ │ ├── batch-2016-08-10.paginators.json │ │ │ ├── budgets-2016-10-20.examples.json │ │ │ ├── budgets-2016-10-20.min.json │ │ │ ├── budgets-2016-10-20.paginators.json │ │ │ ├── clouddirectory-2016-05-10.examples.json │ │ │ ├── clouddirectory-2016-05-10.min.json │ │ │ ├── clouddirectory-2016-05-10.paginators.json │ │ │ ├── cloudformation-2010-05-15.examples.json │ │ │ ├── cloudformation-2010-05-15.min.json │ │ │ ├── cloudformation-2010-05-15.paginators.json │ │ │ ├── cloudformation-2010-05-15.waiters2.json │ │ │ ├── cloudfront-2016-11-25.min.json │ │ │ ├── cloudfront-2016-11-25.paginators.json │ │ │ ├── cloudfront-2016-11-25.waiters2.json │ │ │ ├── cloudfront-2017-03-25.min.json │ │ │ ├── cloudfront-2017-03-25.paginators.json │ │ │ ├── cloudfront-2017-03-25.waiters2.json │ │ │ ├── cloudhsm-2014-05-30.min.json │ │ │ ├── cloudsearch-2011-02-01.min.json │ │ │ ├── cloudsearch-2011-02-01.paginators.json │ │ │ ├── cloudsearch-2013-01-01.min.json │ │ │ ├── cloudsearch-2013-01-01.paginators.json │ │ │ ├── cloudsearchdomain-2013-01-01.min.json │ │ │ ├── cloudtrail-2013-11-01.min.json │ │ │ ├── cloudtrail-2013-11-01.paginators.json │ │ │ ├── codebuild-2016-10-06.examples.json │ │ │ ├── codebuild-2016-10-06.min.json │ │ │ ├── codebuild-2016-10-06.paginators.json │ │ │ ├── codecommit-2015-04-13.min.json │ │ │ ├── codecommit-2015-04-13.paginators.json │ │ │ ├── codedeploy-2014-10-06.examples.json │ │ │ ├── codedeploy-2014-10-06.min.json │ │ │ ├── codedeploy-2014-10-06.paginators.json │ │ │ ├── codedeploy-2014-10-06.waiters2.json │ │ │ ├── codepipeline-2015-07-09.examples.json │ │ │ ├── codepipeline-2015-07-09.min.json │ │ │ ├── codepipeline-2015-07-09.paginators.json │ │ │ ├── codestar-2017-04-19.examples.json │ │ │ ├── codestar-2017-04-19.min.json │ │ │ ├── codestar-2017-04-19.paginators.json │ │ │ ├── cognito-identity-2014-06-30.min.json │ │ │ ├── cognito-identity-2014-06-30.paginators.json │ │ │ ├── cognito-idp-2016-04-18.examples.json │ │ │ ├── cognito-idp-2016-04-18.min.json │ │ │ ├── cognito-idp-2016-04-18.paginators.json │ │ │ ├── cognito-sync-2014-06-30.min.json │ │ │ ├── config-2014-11-12.examples.json │ │ │ ├── config-2014-11-12.min.json │ │ │ ├── config-2014-11-12.paginators.json │ │ │ ├── cur-2017-01-06.min.json │ │ │ ├── cur-2017-01-06.paginators.json │ │ │ ├── datapipeline-2012-10-29.min.json │ │ │ ├── datapipeline-2012-10-29.paginators.json │ │ │ ├── dax-2017-04-19.examples.json │ │ │ ├── dax-2017-04-19.min.json │ │ │ ├── dax-2017-04-19.paginators.json │ │ │ ├── devicefarm-2015-06-23.examples.json │ │ │ ├── devicefarm-2015-06-23.min.json │ │ │ ├── devicefarm-2015-06-23.paginators.json │ │ │ ├── directconnect-2012-10-25.examples.json │ │ │ ├── directconnect-2012-10-25.min.json │ │ │ ├── directconnect-2012-10-25.paginators.json │ │ │ ├── discovery-2015-11-01.examples.json │ │ │ ├── discovery-2015-11-01.min.json │ │ │ ├── discovery-2015-11-01.paginators.json │ │ │ ├── dms-2016-01-01.examples.json │ │ │ ├── dms-2016-01-01.min.json │ │ │ ├── dms-2016-01-01.paginators.json │ │ │ ├── ds-2015-04-16.examples.json │ │ │ ├── ds-2015-04-16.min.json │ │ │ ├── ds-2015-04-16.paginators.json │ │ │ ├── dynamodb-2011-12-05.examples.json │ │ │ ├── dynamodb-2011-12-05.min.json │ │ │ ├── dynamodb-2011-12-05.paginators.json │ │ │ ├── dynamodb-2011-12-05.waiters2.json │ │ │ ├── dynamodb-2012-08-10.examples.json │ │ │ ├── dynamodb-2012-08-10.min.json │ │ │ ├── dynamodb-2012-08-10.paginators.json │ │ │ ├── dynamodb-2012-08-10.waiters2.json │ │ │ ├── ec2-2016-11-15.examples.json │ │ │ ├── ec2-2016-11-15.min.json │ │ │ ├── ec2-2016-11-15.paginators.json │ │ │ ├── ec2-2016-11-15.waiters2.json │ │ │ ├── ecr-2015-09-21.examples.json │ │ │ ├── ecr-2015-09-21.min.json │ │ │ ├── ecr-2015-09-21.paginators.json │ │ │ ├── ecs-2014-11-13.examples.json │ │ │ ├── ecs-2014-11-13.min.json │ │ │ ├── ecs-2014-11-13.paginators.json │ │ │ ├── ecs-2014-11-13.waiters2.json │ │ │ ├── elasticache-2015-02-02.min.json │ │ │ ├── elasticache-2015-02-02.paginators.json │ │ │ ├── elasticache-2015-02-02.waiters2.json │ │ │ ├── elasticbeanstalk-2010-12-01.examples.json │ │ │ ├── elasticbeanstalk-2010-12-01.min.json │ │ │ ├── elasticbeanstalk-2010-12-01.paginators.json │ │ │ ├── elasticfilesystem-2015-02-01.examples.json │ │ │ ├── elasticfilesystem-2015-02-01.min.json │ │ │ ├── elasticloadbalancing-2012-06-01.examples.json │ │ │ ├── elasticloadbalancing-2012-06-01.min.json │ │ │ ├── elasticloadbalancing-2012-06-01.paginators.json │ │ │ ├── elasticloadbalancing-2012-06-01.waiters2.json │ │ │ ├── elasticloadbalancingv2-2015-12-01.examples.json │ │ │ ├── elasticloadbalancingv2-2015-12-01.min.json │ │ │ ├── elasticloadbalancingv2-2015-12-01.paginators.json │ │ │ ├── elasticloadbalancingv2-2015-12-01.waiters2.json │ │ │ ├── elasticmapreduce-2009-03-31.examples.json │ │ │ ├── elasticmapreduce-2009-03-31.min.json │ │ │ ├── elasticmapreduce-2009-03-31.paginators.json │ │ │ ├── elasticmapreduce-2009-03-31.waiters2.json │ │ │ ├── elastictranscoder-2012-09-25.min.json │ │ │ ├── elastictranscoder-2012-09-25.paginators.json │ │ │ ├── elastictranscoder-2012-09-25.waiters2.json │ │ │ ├── email-2010-12-01.examples.json │ │ │ ├── email-2010-12-01.min.json │ │ │ ├── email-2010-12-01.paginators.json │ │ │ ├── email-2010-12-01.waiters2.json │ │ │ ├── entitlement.marketplace-2017-01-11.examples.json │ │ │ ├── entitlement.marketplace-2017-01-11.min.json │ │ │ ├── entitlement.marketplace-2017-01-11.paginators.json │ │ │ ├── es-2015-01-01.min.json │ │ │ ├── es-2015-01-01.paginators.json │ │ │ ├── events-2015-10-07.examples.json │ │ │ ├── events-2015-10-07.min.json │ │ │ ├── events-2015-10-07.paginators.json │ │ │ ├── firehose-2015-08-04.min.json │ │ │ ├── gamelift-2015-10-01.examples.json │ │ │ ├── gamelift-2015-10-01.min.json │ │ │ ├── gamelift-2015-10-01.paginators.json │ │ │ ├── glacier-2012-06-01.examples.json │ │ │ ├── glacier-2012-06-01.min.json │ │ │ ├── glacier-2012-06-01.paginators.json │ │ │ ├── glacier-2012-06-01.waiters2.json │ │ │ ├── greengrass-2017-06-07.min.json │ │ │ ├── health-2016-08-04.min.json │ │ │ ├── health-2016-08-04.paginators.json │ │ │ ├── iam-2010-05-08.examples.json │ │ │ ├── iam-2010-05-08.min.json │ │ │ ├── iam-2010-05-08.paginators.json │ │ │ ├── iam-2010-05-08.waiters2.json │ │ │ ├── importexport-2010-06-01.min.json │ │ │ ├── importexport-2010-06-01.paginators.json │ │ │ ├── inspector-2016-02-16.examples.json │ │ │ ├── inspector-2016-02-16.min.json │ │ │ ├── inspector-2016-02-16.paginators.json │ │ │ ├── iot-2015-05-28.examples.json │ │ │ ├── iot-2015-05-28.min.json │ │ │ ├── iot-2015-05-28.paginators.json │ │ │ ├── iot-data-2015-05-28.min.json │ │ │ ├── kinesis-2013-12-02.examples.json │ │ │ ├── kinesis-2013-12-02.min.json │ │ │ ├── kinesis-2013-12-02.paginators.json │ │ │ ├── kinesis-2013-12-02.waiters2.json │ │ │ ├── kinesisanalytics-2015-08-14.examples.json │ │ │ ├── kinesisanalytics-2015-08-14.min.json │ │ │ ├── kinesisanalytics-2015-08-14.paginators.json │ │ │ ├── kms-2014-11-01.examples.json │ │ │ ├── kms-2014-11-01.min.json │ │ │ ├── kms-2014-11-01.paginators.json │ │ │ ├── lambda-2014-11-11.min.json │ │ │ ├── lambda-2014-11-11.paginators.json │ │ │ ├── lambda-2015-03-31.examples.json │ │ │ ├── lambda-2015-03-31.min.json │ │ │ ├── lambda-2015-03-31.paginators.json │ │ │ ├── lex-models-2017-04-19.examples.json │ │ │ ├── lex-models-2017-04-19.min.json │ │ │ ├── lex-models-2017-04-19.paginators.json │ │ │ ├── lightsail-2016-11-28.examples.json │ │ │ ├── lightsail-2016-11-28.min.json │ │ │ ├── lightsail-2016-11-28.paginators.json │ │ │ ├── logs-2014-03-28.examples.json │ │ │ ├── logs-2014-03-28.min.json │ │ │ ├── logs-2014-03-28.paginators.json │ │ │ ├── machinelearning-2014-12-12.min.json │ │ │ ├── machinelearning-2014-12-12.paginators.json │ │ │ ├── machinelearning-2014-12-12.waiters2.json │ │ │ ├── marketplacecommerceanalytics-2015-07-01.examples.json │ │ │ ├── marketplacecommerceanalytics-2015-07-01.min.json │ │ │ ├── marketplacecommerceanalytics-2015-07-01.paginators.json │ │ │ ├── metadata.json │ │ │ ├── meteringmarketplace-2016-01-14.min.json │ │ │ ├── mobileanalytics-2014-06-05.min.json │ │ │ ├── monitoring-2010-08-01.examples.json │ │ │ ├── monitoring-2010-08-01.min.json │ │ │ ├── monitoring-2010-08-01.paginators.json │ │ │ ├── monitoring-2010-08-01.waiters2.json │ │ │ ├── mturk-requester-2017-01-17.min.json │ │ │ ├── mturk-requester-2017-01-17.paginators.json │ │ │ ├── opsworks-2013-02-18.examples.json │ │ │ ├── opsworks-2013-02-18.min.json │ │ │ ├── opsworks-2013-02-18.paginators.json │ │ │ ├── opsworks-2013-02-18.waiters2.json │ │ │ ├── opsworkscm-2016-11-01.min.json │ │ │ ├── opsworkscm-2016-11-01.paginators.json │ │ │ ├── organizations-2016-11-28.examples.json │ │ │ ├── organizations-2016-11-28.min.json │ │ │ ├── organizations-2016-11-28.paginators.json │ │ │ ├── pinpoint-2016-12-01.examples.json │ │ │ ├── pinpoint-2016-12-01.min.json │ │ │ ├── polly-2016-06-10.examples.json │ │ │ ├── polly-2016-06-10.min.json │ │ │ ├── polly-2016-06-10.paginators.json │ │ │ ├── rds-2013-01-10.examples.json │ │ │ ├── rds-2013-01-10.min.json │ │ │ ├── rds-2013-01-10.paginators.json │ │ │ ├── rds-2013-02-12.examples.json │ │ │ ├── rds-2013-02-12.min.json │ │ │ ├── rds-2013-02-12.paginators.json │ │ │ ├── rds-2013-09-09.examples.json │ │ │ ├── rds-2013-09-09.min.json │ │ │ ├── rds-2013-09-09.paginators.json │ │ │ ├── rds-2013-09-09.waiters2.json │ │ │ ├── rds-2014-09-01.examples.json │ │ │ ├── rds-2014-09-01.min.json │ │ │ ├── rds-2014-09-01.paginators.json │ │ │ ├── rds-2014-10-31.min.json │ │ │ ├── rds-2014-10-31.paginators.json │ │ │ ├── rds-2014-10-31.waiters2.json │ │ │ ├── redshift-2012-12-01.examples.json │ │ │ ├── redshift-2012-12-01.min.json │ │ │ ├── redshift-2012-12-01.paginators.json │ │ │ ├── redshift-2012-12-01.waiters2.json │ │ │ ├── rekognition-2016-06-27.examples.json │ │ │ ├── rekognition-2016-06-27.min.json │ │ │ ├── rekognition-2016-06-27.paginators.json │ │ │ ├── resourcegroupstaggingapi-2017-01-26.examples.json │ │ │ ├── resourcegroupstaggingapi-2017-01-26.min.json │ │ │ ├── resourcegroupstaggingapi-2017-01-26.paginators.json │ │ │ ├── route53-2013-04-01.examples.json │ │ │ ├── route53-2013-04-01.min.json │ │ │ ├── route53-2013-04-01.paginators.json │ │ │ ├── route53-2013-04-01.waiters2.json │ │ │ ├── route53domains-2014-05-15.examples.json │ │ │ ├── route53domains-2014-05-15.min.json │ │ │ ├── route53domains-2014-05-15.paginators.json │ │ │ ├── runtime.lex-2016-11-28.examples.json │ │ │ ├── runtime.lex-2016-11-28.min.json │ │ │ ├── runtime.lex-2016-11-28.paginators.json │ │ │ ├── s3-2006-03-01.examples.json │ │ │ ├── s3-2006-03-01.min.json │ │ │ ├── s3-2006-03-01.paginators.json │ │ │ ├── s3-2006-03-01.waiters2.json │ │ │ ├── sdb-2009-04-15.min.json │ │ │ ├── sdb-2009-04-15.paginators.json │ │ │ ├── servicecatalog-2015-12-10.examples.json │ │ │ ├── servicecatalog-2015-12-10.min.json │ │ │ ├── servicecatalog-2015-12-10.paginators.json │ │ │ ├── shield-2016-06-02.min.json │ │ │ ├── sms-2016-10-24.min.json │ │ │ ├── sms-2016-10-24.paginators.json │ │ │ ├── snowball-2016-06-30.examples.json │ │ │ ├── snowball-2016-06-30.min.json │ │ │ ├── snowball-2016-06-30.paginators.json │ │ │ ├── sns-2010-03-31.min.json │ │ │ ├── sns-2010-03-31.paginators.json │ │ │ ├── sqs-2012-11-05.examples.json │ │ │ ├── sqs-2012-11-05.min.json │ │ │ ├── sqs-2012-11-05.paginators.json │ │ │ ├── ssm-2014-11-06.examples.json │ │ │ ├── ssm-2014-11-06.min.json │ │ │ ├── ssm-2014-11-06.paginators.json │ │ │ ├── states-2016-11-23.min.json │ │ │ ├── states-2016-11-23.paginators.json │ │ │ ├── storagegateway-2013-06-30.examples.json │ │ │ ├── storagegateway-2013-06-30.min.json │ │ │ ├── storagegateway-2013-06-30.paginators.json │ │ │ ├── streams.dynamodb-2012-08-10.examples.json │ │ │ ├── streams.dynamodb-2012-08-10.min.json │ │ │ ├── streams.dynamodb-2012-08-10.paginators.json │ │ │ ├── sts-2011-06-15.examples.json │ │ │ ├── sts-2011-06-15.min.json │ │ │ ├── sts-2011-06-15.paginators.json │ │ │ ├── support-2013-04-15.min.json │ │ │ ├── support-2013-04-15.paginators.json │ │ │ ├── swf-2012-01-25.examples.json │ │ │ ├── swf-2012-01-25.min.json │ │ │ ├── swf-2012-01-25.paginators.json │ │ │ ├── waf-2015-08-24.examples.json │ │ │ ├── waf-2015-08-24.min.json │ │ │ ├── waf-2015-08-24.paginators.json │ │ │ ├── waf-regional-2016-11-28.examples.json │ │ │ ├── waf-regional-2016-11-28.min.json │ │ │ ├── waf-regional-2016-11-28.paginators.json │ │ │ ├── workdocs-2016-05-01.examples.json │ │ │ ├── workdocs-2016-05-01.min.json │ │ │ ├── workdocs-2016-05-01.paginators.json │ │ │ ├── workspaces-2015-04-08.examples.json │ │ │ ├── workspaces-2015-04-08.min.json │ │ │ ├── workspaces-2015-04-08.paginators.json │ │ │ ├── xray-2016-04-12.examples.json │ │ │ ├── xray-2016-04-12.min.json │ │ │ └── xray-2016-04-12.paginators.json │ │ ├── browser.js │ │ ├── clients │ │ │ ├── acm.d.ts │ │ │ ├── acm.js │ │ │ ├── all.d.ts │ │ │ ├── all.js │ │ │ ├── apigateway.d.ts │ │ │ ├── apigateway.js │ │ │ ├── applicationautoscaling.d.ts │ │ │ ├── applicationautoscaling.js │ │ │ ├── appstream.d.ts │ │ │ ├── appstream.js │ │ │ ├── athena.d.ts │ │ │ ├── athena.js │ │ │ ├── autoscaling.d.ts │ │ │ ├── autoscaling.js │ │ │ ├── batch.d.ts │ │ │ ├── batch.js │ │ │ ├── browser_default.d.ts │ │ │ ├── browser_default.js │ │ │ ├── budgets.d.ts │ │ │ ├── budgets.js │ │ │ ├── clouddirectory.d.ts │ │ │ ├── clouddirectory.js │ │ │ ├── cloudformation.d.ts │ │ │ ├── cloudformation.js │ │ │ ├── cloudfront.d.ts │ │ │ ├── cloudfront.js │ │ │ ├── cloudhsm.d.ts │ │ │ ├── cloudhsm.js │ │ │ ├── cloudsearch.d.ts │ │ │ ├── cloudsearch.js │ │ │ ├── cloudsearchdomain.d.ts │ │ │ ├── cloudsearchdomain.js │ │ │ ├── cloudtrail.d.ts │ │ │ ├── cloudtrail.js │ │ │ ├── cloudwatch.d.ts │ │ │ ├── cloudwatch.js │ │ │ ├── cloudwatchevents.d.ts │ │ │ ├── cloudwatchevents.js │ │ │ ├── cloudwatchlogs.d.ts │ │ │ ├── cloudwatchlogs.js │ │ │ ├── codebuild.d.ts │ │ │ ├── codebuild.js │ │ │ ├── codecommit.d.ts │ │ │ ├── codecommit.js │ │ │ ├── codedeploy.d.ts │ │ │ ├── codedeploy.js │ │ │ ├── codepipeline.d.ts │ │ │ ├── codepipeline.js │ │ │ ├── codestar.d.ts │ │ │ ├── codestar.js │ │ │ ├── cognitoidentity.d.ts │ │ │ ├── cognitoidentity.js │ │ │ ├── cognitoidentityserviceprovider.d.ts │ │ │ ├── cognitoidentityserviceprovider.js │ │ │ ├── cognitosync.d.ts │ │ │ ├── cognitosync.js │ │ │ ├── configservice.d.ts │ │ │ ├── configservice.js │ │ │ ├── cur.d.ts │ │ │ ├── cur.js │ │ │ ├── datapipeline.d.ts │ │ │ ├── datapipeline.js │ │ │ ├── dax.d.ts │ │ │ ├── dax.js │ │ │ ├── devicefarm.d.ts │ │ │ ├── devicefarm.js │ │ │ ├── directconnect.d.ts │ │ │ ├── directconnect.js │ │ │ ├── directoryservice.d.ts │ │ │ ├── directoryservice.js │ │ │ ├── discovery.d.ts │ │ │ ├── discovery.js │ │ │ ├── dms.d.ts │ │ │ ├── dms.js │ │ │ ├── dynamodb.d.ts │ │ │ ├── dynamodb.js │ │ │ ├── dynamodbstreams.d.ts │ │ │ ├── dynamodbstreams.js │ │ │ ├── ec2.d.ts │ │ │ ├── ec2.js │ │ │ ├── ecr.d.ts │ │ │ ├── ecr.js │ │ │ ├── ecs.d.ts │ │ │ ├── ecs.js │ │ │ ├── efs.d.ts │ │ │ ├── efs.js │ │ │ ├── elasticache.d.ts │ │ │ ├── elasticache.js │ │ │ ├── elasticbeanstalk.d.ts │ │ │ ├── elasticbeanstalk.js │ │ │ ├── elastictranscoder.d.ts │ │ │ ├── elastictranscoder.js │ │ │ ├── elb.d.ts │ │ │ ├── elb.js │ │ │ ├── elbv2.d.ts │ │ │ ├── elbv2.js │ │ │ ├── emr.d.ts │ │ │ ├── emr.js │ │ │ ├── es.d.ts │ │ │ ├── es.js │ │ │ ├── firehose.d.ts │ │ │ ├── firehose.js │ │ │ ├── gamelift.d.ts │ │ │ ├── gamelift.js │ │ │ ├── glacier.d.ts │ │ │ ├── glacier.js │ │ │ ├── greengrass.d.ts │ │ │ ├── greengrass.js │ │ │ ├── health.d.ts │ │ │ ├── health.js │ │ │ ├── iam.d.ts │ │ │ ├── iam.js │ │ │ ├── importexport.d.ts │ │ │ ├── importexport.js │ │ │ ├── inspector.d.ts │ │ │ ├── inspector.js │ │ │ ├── iot.d.ts │ │ │ ├── iot.js │ │ │ ├── iotdata.d.ts │ │ │ ├── iotdata.js │ │ │ ├── kinesis.d.ts │ │ │ ├── kinesis.js │ │ │ ├── kinesisanalytics.d.ts │ │ │ ├── kinesisanalytics.js │ │ │ ├── kms.d.ts │ │ │ ├── kms.js │ │ │ ├── lambda.d.ts │ │ │ ├── lambda.js │ │ │ ├── lexmodelbuildingservice.d.ts │ │ │ ├── lexmodelbuildingservice.js │ │ │ ├── lexruntime.d.ts │ │ │ ├── lexruntime.js │ │ │ ├── lightsail.d.ts │ │ │ ├── lightsail.js │ │ │ ├── machinelearning.d.ts │ │ │ ├── machinelearning.js │ │ │ ├── marketplacecommerceanalytics.d.ts │ │ │ ├── marketplacecommerceanalytics.js │ │ │ ├── marketplaceentitlementservice.d.ts │ │ │ ├── marketplaceentitlementservice.js │ │ │ ├── marketplacemetering.d.ts │ │ │ ├── marketplacemetering.js │ │ │ ├── mobileanalytics.d.ts │ │ │ ├── mobileanalytics.js │ │ │ ├── mturk.d.ts │ │ │ ├── mturk.js │ │ │ ├── opsworks.d.ts │ │ │ ├── opsworks.js │ │ │ ├── opsworkscm.d.ts │ │ │ ├── opsworkscm.js │ │ │ ├── organizations.d.ts │ │ │ ├── organizations.js │ │ │ ├── pinpoint.d.ts │ │ │ ├── pinpoint.js │ │ │ ├── polly.d.ts │ │ │ ├── polly.js │ │ │ ├── rds.d.ts │ │ │ ├── rds.js │ │ │ ├── redshift.d.ts │ │ │ ├── redshift.js │ │ │ ├── rekognition.d.ts │ │ │ ├── rekognition.js │ │ │ ├── resourcegroupstaggingapi.d.ts │ │ │ ├── resourcegroupstaggingapi.js │ │ │ ├── route53.d.ts │ │ │ ├── route53.js │ │ │ ├── route53domains.d.ts │ │ │ ├── route53domains.js │ │ │ ├── s3.d.ts │ │ │ ├── s3.js │ │ │ ├── servicecatalog.d.ts │ │ │ ├── servicecatalog.js │ │ │ ├── ses.d.ts │ │ │ ├── ses.js │ │ │ ├── shield.d.ts │ │ │ ├── shield.js │ │ │ ├── simpledb.d.ts │ │ │ ├── simpledb.js │ │ │ ├── sms.d.ts │ │ │ ├── sms.js │ │ │ ├── snowball.d.ts │ │ │ ├── snowball.js │ │ │ ├── sns.d.ts │ │ │ ├── sns.js │ │ │ ├── sqs.d.ts │ │ │ ├── sqs.js │ │ │ ├── ssm.d.ts │ │ │ ├── ssm.js │ │ │ ├── stepfunctions.d.ts │ │ │ ├── stepfunctions.js │ │ │ ├── storagegateway.d.ts │ │ │ ├── storagegateway.js │ │ │ ├── sts.d.ts │ │ │ ├── sts.js │ │ │ ├── support.d.ts │ │ │ ├── support.js │ │ │ ├── swf.d.ts │ │ │ ├── swf.js │ │ │ ├── waf.d.ts │ │ │ ├── waf.js │ │ │ ├── wafregional.d.ts │ │ │ ├── wafregional.js │ │ │ ├── workdocs.d.ts │ │ │ ├── workdocs.js │ │ │ ├── workspaces.d.ts │ │ │ ├── workspaces.js │ │ │ ├── xray.d.ts │ │ │ └── xray.js │ │ ├── dist-tools │ │ │ ├── browser-builder.js │ │ │ ├── client-creator.js │ │ │ ├── create-all-services.js │ │ │ ├── service-collector.js │ │ │ ├── transform.js │ │ │ ├── webpack.config.rn-core.js │ │ │ ├── webpack.config.rn-dep.js │ │ │ └── webpack.config.rn.js │ │ ├── dist │ │ │ ├── BUNDLE_LICENSE.txt │ │ │ ├── aws-sdk-core-react-native.js │ │ │ ├── aws-sdk-react-native.js │ │ │ ├── aws-sdk.js │ │ │ ├── aws-sdk.min.js │ │ │ └── xml2js.js │ │ ├── global.d.ts │ │ ├── global.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── lib │ │ │ ├── api_loader.js │ │ │ ├── aws.js │ │ │ ├── browser.js │ │ │ ├── browser_loader.js │ │ │ ├── cloudfront │ │ │ │ ├── signer.d.ts │ │ │ │ └── signer.js │ │ │ ├── config.d.ts │ │ │ ├── config.js │ │ │ ├── config_service_placeholders.d.ts │ │ │ ├── config_use_dualstack.d.ts │ │ │ ├── core.d.ts │ │ │ ├── core.js │ │ │ ├── credentials.d.ts │ │ │ ├── credentials.js │ │ │ ├── credentials │ │ │ │ ├── cognito_identity_credentials.d.ts │ │ │ │ ├── cognito_identity_credentials.js │ │ │ │ ├── credential_provider_chain.d.ts │ │ │ │ ├── credential_provider_chain.js │ │ │ │ ├── ec2_metadata_credentials.d.ts │ │ │ │ ├── ec2_metadata_credentials.js │ │ │ │ ├── ecs_credentials.d.ts │ │ │ │ ├── ecs_credentials.js │ │ │ │ ├── environment_credentials.d.ts │ │ │ │ ├── environment_credentials.js │ │ │ │ ├── file_system_credentials.d.ts │ │ │ │ ├── file_system_credentials.js │ │ │ │ ├── saml_credentials.d.ts │ │ │ │ ├── saml_credentials.js │ │ │ │ ├── shared_ini_file_credentials.d.ts │ │ │ │ ├── shared_ini_file_credentials.js │ │ │ │ ├── temporary_credentials.d.ts │ │ │ │ ├── temporary_credentials.js │ │ │ │ ├── web_identity_credentials.d.ts │ │ │ │ └── web_identity_credentials.js │ │ │ ├── dynamodb │ │ │ │ ├── converter.d.ts │ │ │ │ ├── converter.js │ │ │ │ ├── document_client.d.ts │ │ │ │ ├── document_client.js │ │ │ │ ├── set.js │ │ │ │ ├── translator.js │ │ │ │ └── types.js │ │ │ ├── empty.js │ │ │ ├── endpoint.d.ts │ │ │ ├── error.d.ts │ │ │ ├── event_listeners.d.ts │ │ │ ├── event_listeners.js │ │ │ ├── http.js │ │ │ ├── http │ │ │ │ ├── node.js │ │ │ │ └── xhr.js │ │ │ ├── http_request.d.ts │ │ │ ├── http_response.d.ts │ │ │ ├── json │ │ │ │ ├── builder.js │ │ │ │ └── parser.js │ │ │ ├── metadata_service.d.ts │ │ │ ├── metadata_service.js │ │ │ ├── model │ │ │ │ ├── api.js │ │ │ │ ├── collection.js │ │ │ │ ├── operation.js │ │ │ │ ├── paginator.js │ │ │ │ ├── resource_waiter.js │ │ │ │ └── shape.js │ │ │ ├── node_loader.js │ │ │ ├── param_validator.js │ │ │ ├── polly │ │ │ │ ├── presigner.d.ts │ │ │ │ └── presigner.js │ │ │ ├── protocol │ │ │ │ ├── json.js │ │ │ │ ├── query.js │ │ │ │ ├── rest.js │ │ │ │ ├── rest_json.js │ │ │ │ └── rest_xml.js │ │ │ ├── query │ │ │ │ └── query_param_serializer.js │ │ │ ├── rds │ │ │ │ ├── signer.d.ts │ │ │ │ └── signer.js │ │ │ ├── react-native-loader.js │ │ │ ├── react-native │ │ │ │ └── add-content-type.js │ │ │ ├── region_config.js │ │ │ ├── region_config_data.json │ │ │ ├── request.d.ts │ │ │ ├── request.js │ │ │ ├── resource_waiter.js │ │ │ ├── response.d.ts │ │ │ ├── response.js │ │ │ ├── s3 │ │ │ │ ├── managed_upload.d.ts │ │ │ │ ├── managed_upload.js │ │ │ │ └── presigned_post.d.ts │ │ │ ├── sequential_executor.js │ │ │ ├── service.d.ts │ │ │ ├── service.js │ │ │ ├── services │ │ │ │ ├── apigateway.js │ │ │ │ ├── cloudfront.d.ts │ │ │ │ ├── cloudfront.js │ │ │ │ ├── cloudsearchdomain.js │ │ │ │ ├── cognitoidentity.js │ │ │ │ ├── dynamodb.d.ts │ │ │ │ ├── dynamodb.js │ │ │ │ ├── ec2.js │ │ │ │ ├── glacier.d.ts │ │ │ │ ├── glacier.js │ │ │ │ ├── iotdata.js │ │ │ │ ├── lambda.js │ │ │ │ ├── machinelearning.js │ │ │ │ ├── polly.d.ts │ │ │ │ ├── polly.js │ │ │ │ ├── rds.js │ │ │ │ ├── route53.js │ │ │ │ ├── s3.d.ts │ │ │ │ ├── s3.js │ │ │ │ ├── sqs.js │ │ │ │ ├── sts.js │ │ │ │ └── swf.js │ │ │ ├── shared_ini.js │ │ │ ├── signers │ │ │ │ ├── presign.js │ │ │ │ ├── request_signer.js │ │ │ │ ├── s3.js │ │ │ │ ├── v2.js │ │ │ │ ├── v3.js │ │ │ │ ├── v3https.js │ │ │ │ ├── v4.js │ │ │ │ └── v4_credentials.js │ │ │ ├── state_machine.js │ │ │ ├── util.js │ │ │ └── xml │ │ │ │ ├── browser_parser.js │ │ │ │ ├── builder.js │ │ │ │ └── node_parser.js │ │ ├── package.json │ │ ├── react-native.js │ │ └── scripts │ │ │ ├── changelog │ │ │ ├── README.md │ │ │ ├── add-change.js │ │ │ ├── change-creator.js │ │ │ ├── create-changelog │ │ │ ├── release │ │ │ └── util.js │ │ │ ├── console │ │ │ ├── lib │ │ │ ├── translator.js │ │ │ ├── ts-customizations.json │ │ │ └── ts-generator.js │ │ │ ├── services-table-generator.js │ │ │ ├── services-table-generator.ts │ │ │ ├── translate-api │ │ │ └── typings-generator.js │ ├── base64-js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── base64js.min.js │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ ├── big-data.js │ │ │ ├── convert.js │ │ │ └── url-safe.js │ ├── bluebird │ │ ├── LICENSE │ │ ├── README.md │ │ ├── changelog.md │ │ ├── js │ │ │ ├── browser │ │ │ │ ├── bluebird.core.js │ │ │ │ ├── bluebird.core.min.js │ │ │ │ ├── bluebird.js │ │ │ │ └── bluebird.min.js │ │ │ └── release │ │ │ │ ├── any.js │ │ │ │ ├── assert.js │ │ │ │ ├── async.js │ │ │ │ ├── bind.js │ │ │ │ ├── bluebird.js │ │ │ │ ├── call_get.js │ │ │ │ ├── cancel.js │ │ │ │ ├── catch_filter.js │ │ │ │ ├── context.js │ │ │ │ ├── debuggability.js │ │ │ │ ├── direct_resolve.js │ │ │ │ ├── each.js │ │ │ │ ├── errors.js │ │ │ │ ├── es5.js │ │ │ │ ├── filter.js │ │ │ │ ├── finally.js │ │ │ │ ├── generators.js │ │ │ │ ├── join.js │ │ │ │ ├── map.js │ │ │ │ ├── method.js │ │ │ │ ├── nodeback.js │ │ │ │ ├── nodeify.js │ │ │ │ ├── promise.js │ │ │ │ ├── promise_array.js │ │ │ │ ├── promisify.js │ │ │ │ ├── props.js │ │ │ │ ├── queue.js │ │ │ │ ├── race.js │ │ │ │ ├── reduce.js │ │ │ │ ├── schedule.js │ │ │ │ ├── settle.js │ │ │ │ ├── some.js │ │ │ │ ├── synchronous_inspection.js │ │ │ │ ├── thenables.js │ │ │ │ ├── timers.js │ │ │ │ ├── using.js │ │ │ │ └── util.js │ │ └── package.json │ ├── buffer │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── AUTHORS.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ ├── download-node-tests.js │ │ │ ├── test.js │ │ │ ├── update-authors.sh │ │ │ ├── zuul-es5.yml │ │ │ └── zuul-es6.yml │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ ├── _polyfill.js │ │ │ ├── base64.js │ │ │ ├── basic.js │ │ │ ├── compare.js │ │ │ ├── constructor.js │ │ │ ├── from-string.js │ │ │ ├── is-buffer.js │ │ │ ├── methods.js │ │ │ ├── node │ │ │ ├── test-buffer-alloc.js │ │ │ ├── test-buffer-arraybuffer.js │ │ │ ├── test-buffer-ascii.js │ │ │ ├── test-buffer-bad-overload.js │ │ │ ├── test-buffer-badhex.js │ │ │ ├── test-buffer-bytelength.js │ │ │ ├── test-buffer-compare-offset.js │ │ │ ├── test-buffer-concat.js │ │ │ ├── test-buffer-fill.js │ │ │ ├── test-buffer-includes.js │ │ │ ├── test-buffer-indexof.js │ │ │ ├── test-buffer-inheritance.js │ │ │ ├── test-buffer-inspect.js │ │ │ ├── test-buffer-iterator.js │ │ │ ├── test-buffer-safe-unsafe.js │ │ │ ├── test-buffer-slow.js │ │ │ ├── test-buffer-swap.js │ │ │ ├── test-buffer-zero-fill-cli.js │ │ │ ├── test-buffer-zero-fill-reset.js │ │ │ └── test-buffer.js │ │ │ ├── slice.js │ │ │ ├── static.js │ │ │ ├── to-string.js │ │ │ ├── write.js │ │ │ └── write_infinity.js │ ├── colors │ │ ├── .travis.yml │ │ ├── MIT-LICENSE.txt │ │ ├── ReadMe.md │ │ ├── examples │ │ │ ├── normal-usage.js │ │ │ └── safe-string.js │ │ ├── lib │ │ │ ├── colors.js │ │ │ ├── custom │ │ │ │ ├── trap.js │ │ │ │ └── zalgo.js │ │ │ ├── extendStringPrototype.js │ │ │ ├── index.js │ │ │ ├── maps │ │ │ │ ├── america.js │ │ │ │ ├── rainbow.js │ │ │ │ ├── random.js │ │ │ │ └── zebra.js │ │ │ ├── styles.js │ │ │ └── system │ │ │ │ └── supports-colors.js │ │ ├── package.json │ │ ├── safe.js │ │ ├── screenshots │ │ │ └── colors.png │ │ ├── tests │ │ │ ├── basic-test.js │ │ │ └── safe-test.js │ │ └── themes │ │ │ └── generic-logging.js │ ├── crypto-browserify │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── example │ │ │ ├── bundle.js │ │ │ ├── index.html │ │ │ └── test.js │ │ ├── helpers.js │ │ ├── index.js │ │ ├── md5.js │ │ ├── package.json │ │ ├── readme.markdown │ │ ├── rng.js │ │ ├── sha.js │ │ ├── sha256.js │ │ └── test │ │ │ ├── browser.js │ │ │ ├── node.js │ │ │ ├── package.json │ │ │ ├── simple.js │ │ │ └── vectors │ │ │ ├── Readme.txt │ │ │ ├── byte-hashes.md5 │ │ │ ├── byte-hashes.sha1 │ │ │ ├── byte-hashes.sha256 │ │ │ ├── byte0000.dat │ │ │ ├── byte0001.dat │ │ │ ├── byte0002.dat │ │ │ ├── byte0003.dat │ │ │ ├── byte0004.dat │ │ │ ├── byte0005.dat │ │ │ ├── byte0006.dat │ │ │ ├── byte0007.dat │ │ │ ├── byte0008.dat │ │ │ ├── byte0009.dat │ │ │ ├── byte0010.dat │ │ │ ├── byte0011.dat │ │ │ ├── byte0012.dat │ │ │ ├── byte0013.dat │ │ │ ├── byte0014.dat │ │ │ ├── byte0015.dat │ │ │ ├── byte0016.dat │ │ │ ├── byte0017.dat │ │ │ ├── byte0018.dat │ │ │ ├── byte0019.dat │ │ │ ├── byte0020.dat │ │ │ ├── byte0021.dat │ │ │ ├── byte0022.dat │ │ │ ├── byte0023.dat │ │ │ ├── byte0024.dat │ │ │ ├── byte0025.dat │ │ │ ├── byte0026.dat │ │ │ ├── byte0027.dat │ │ │ ├── byte0028.dat │ │ │ ├── byte0029.dat │ │ │ ├── byte0030.dat │ │ │ ├── byte0031.dat │ │ │ ├── byte0032.dat │ │ │ ├── byte0033.dat │ │ │ ├── byte0034.dat │ │ │ ├── byte0035.dat │ │ │ ├── byte0036.dat │ │ │ ├── byte0037.dat │ │ │ ├── byte0038.dat │ │ │ ├── byte0039.dat │ │ │ ├── byte0040.dat │ │ │ ├── byte0041.dat │ │ │ ├── byte0042.dat │ │ │ ├── byte0043.dat │ │ │ ├── byte0044.dat │ │ │ ├── byte0045.dat │ │ │ ├── byte0046.dat │ │ │ ├── byte0047.dat │ │ │ ├── byte0048.dat │ │ │ ├── byte0049.dat │ │ │ ├── byte0050.dat │ │ │ ├── byte0051.dat │ │ │ ├── byte0052.dat │ │ │ ├── byte0053.dat │ │ │ ├── byte0054.dat │ │ │ ├── byte0055.dat │ │ │ ├── byte0056.dat │ │ │ ├── byte0057.dat │ │ │ ├── byte0058.dat │ │ │ ├── byte0059.dat │ │ │ ├── byte0060.dat │ │ │ ├── byte0061.dat │ │ │ ├── byte0062.dat │ │ │ ├── byte0063.dat │ │ │ ├── byte0064.dat │ │ │ ├── byte0065.dat │ │ │ ├── byte0066.dat │ │ │ ├── byte0067.dat │ │ │ ├── byte0068.dat │ │ │ ├── byte0069.dat │ │ │ ├── byte0070.dat │ │ │ ├── byte0071.dat │ │ │ ├── byte0072.dat │ │ │ ├── byte0073.dat │ │ │ ├── byte0074.dat │ │ │ ├── byte0075.dat │ │ │ ├── byte0076.dat │ │ │ ├── byte0077.dat │ │ │ ├── byte0078.dat │ │ │ ├── byte0079.dat │ │ │ ├── byte0080.dat │ │ │ ├── byte0081.dat │ │ │ ├── byte0082.dat │ │ │ ├── byte0083.dat │ │ │ ├── byte0084.dat │ │ │ ├── byte0085.dat │ │ │ ├── byte0086.dat │ │ │ ├── byte0087.dat │ │ │ ├── byte0088.dat │ │ │ ├── byte0089.dat │ │ │ ├── byte0090.dat │ │ │ ├── byte0091.dat │ │ │ ├── byte0092.dat │ │ │ ├── byte0093.dat │ │ │ ├── byte0094.dat │ │ │ ├── byte0095.dat │ │ │ ├── byte0096.dat │ │ │ ├── byte0097.dat │ │ │ ├── byte0098.dat │ │ │ ├── byte0099.dat │ │ │ ├── byte0100.dat │ │ │ ├── byte0101.dat │ │ │ ├── byte0102.dat │ │ │ ├── byte0103.dat │ │ │ ├── byte0104.dat │ │ │ ├── byte0105.dat │ │ │ ├── byte0106.dat │ │ │ ├── byte0107.dat │ │ │ ├── byte0108.dat │ │ │ ├── byte0109.dat │ │ │ ├── byte0110.dat │ │ │ ├── byte0111.dat │ │ │ ├── byte0112.dat │ │ │ ├── byte0113.dat │ │ │ ├── byte0114.dat │ │ │ ├── byte0115.dat │ │ │ ├── byte0116.dat │ │ │ ├── byte0117.dat │ │ │ ├── byte0118.dat │ │ │ ├── byte0119.dat │ │ │ ├── byte0120.dat │ │ │ ├── byte0121.dat │ │ │ ├── byte0122.dat │ │ │ ├── byte0123.dat │ │ │ ├── byte0124.dat │ │ │ ├── byte0125.dat │ │ │ ├── byte0126.dat │ │ │ ├── byte0127.dat │ │ │ ├── byte0128.dat │ │ │ ├── byte0129.dat │ │ │ ├── byte0130.dat │ │ │ ├── byte0131.dat │ │ │ ├── byte0132.dat │ │ │ ├── byte0133.dat │ │ │ ├── byte0134.dat │ │ │ ├── byte0135.dat │ │ │ ├── byte0136.dat │ │ │ ├── byte0137.dat │ │ │ ├── byte0138.dat │ │ │ ├── byte0139.dat │ │ │ ├── byte0140.dat │ │ │ ├── byte0141.dat │ │ │ ├── byte0142.dat │ │ │ ├── byte0143.dat │ │ │ ├── byte0144.dat │ │ │ ├── byte0145.dat │ │ │ ├── byte0146.dat │ │ │ ├── byte0147.dat │ │ │ ├── byte0148.dat │ │ │ ├── byte0149.dat │ │ │ ├── byte0150.dat │ │ │ ├── byte0151.dat │ │ │ ├── byte0152.dat │ │ │ ├── byte0153.dat │ │ │ ├── byte0154.dat │ │ │ ├── byte0155.dat │ │ │ ├── byte0156.dat │ │ │ ├── byte0157.dat │ │ │ ├── byte0158.dat │ │ │ ├── byte0159.dat │ │ │ ├── byte0160.dat │ │ │ ├── byte0161.dat │ │ │ ├── byte0162.dat │ │ │ ├── byte0163.dat │ │ │ ├── byte0164.dat │ │ │ ├── byte0165.dat │ │ │ ├── byte0166.dat │ │ │ ├── byte0167.dat │ │ │ ├── byte0168.dat │ │ │ ├── byte0169.dat │ │ │ ├── byte0170.dat │ │ │ ├── byte0171.dat │ │ │ ├── byte0172.dat │ │ │ ├── byte0173.dat │ │ │ ├── byte0174.dat │ │ │ ├── byte0175.dat │ │ │ ├── byte0176.dat │ │ │ ├── byte0177.dat │ │ │ ├── byte0178.dat │ │ │ ├── byte0179.dat │ │ │ ├── byte0180.dat │ │ │ ├── byte0181.dat │ │ │ ├── byte0182.dat │ │ │ ├── byte0183.dat │ │ │ ├── byte0184.dat │ │ │ ├── byte0185.dat │ │ │ ├── byte0186.dat │ │ │ ├── byte0187.dat │ │ │ ├── byte0188.dat │ │ │ ├── byte0189.dat │ │ │ ├── byte0190.dat │ │ │ ├── byte0191.dat │ │ │ ├── byte0192.dat │ │ │ ├── byte0193.dat │ │ │ ├── byte0194.dat │ │ │ └── byte0195.dat │ ├── cycle │ │ ├── README.md │ │ ├── cycle.js │ │ └── package.json │ ├── events │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── .zuul.yml │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── events.js │ │ ├── package.json │ │ └── tests │ │ │ ├── add-listeners.js │ │ │ ├── check-listener-leaks.js │ │ │ ├── common.js │ │ │ ├── index.js │ │ │ ├── legacy-compat.js │ │ │ ├── listener-count.js │ │ │ ├── listeners-side-effects.js │ │ │ ├── listeners.js │ │ │ ├── max-listeners.js │ │ │ ├── modify-in-emit.js │ │ │ ├── num-args.js │ │ │ ├── once.js │ │ │ ├── remove-all-listeners.js │ │ │ ├── remove-listeners.js │ │ │ ├── set-max-listeners-side-effects.js │ │ │ └── subclass.js │ ├── eyes │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── lib │ │ │ └── eyes.js │ │ ├── package.json │ │ └── test │ │ │ └── eyes-test.js │ ├── ieee754 │ │ ├── .travis.yml │ │ ├── .zuul.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ └── basic.js │ ├── isarray │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── Makefile │ │ ├── README.md │ │ ├── component.json │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ ├── isstream │ │ ├── .jshintrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── isstream.js │ │ ├── package.json │ │ └── test.js │ ├── jmespath │ │ ├── .eslintrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── BASELINE │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── artifacts │ │ │ └── jmespath.min.js │ │ ├── bower.json │ │ ├── g.sh │ │ ├── index.html │ │ ├── james.html │ │ ├── jmespath.js │ │ ├── jp.js │ │ ├── l.js │ │ ├── package.json │ │ ├── perf.js │ │ ├── reservedWords.json │ │ └── test │ │ │ ├── compliance.js │ │ │ ├── compliance │ │ │ ├── basic.json │ │ │ ├── boolean.json │ │ │ ├── current.json │ │ │ ├── escape.json │ │ │ ├── filters.json │ │ │ ├── functions.json │ │ │ ├── identifiers.json │ │ │ ├── indices.json │ │ │ ├── literal.json │ │ │ ├── multiselect.json │ │ │ ├── pipe.json │ │ │ ├── slice.json │ │ │ ├── syntax.json │ │ │ ├── unicode.json │ │ │ └── wildcard.json │ │ │ └── jmespath.js │ ├── lodash │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _DataView.js │ │ ├── _Hash.js │ │ ├── _LazyWrapper.js │ │ ├── _ListCache.js │ │ ├── _LodashWrapper.js │ │ ├── _Map.js │ │ ├── _MapCache.js │ │ ├── _Promise.js │ │ ├── _Set.js │ │ ├── _SetCache.js │ │ ├── _Stack.js │ │ ├── _Symbol.js │ │ ├── _Uint8Array.js │ │ ├── _WeakMap.js │ │ ├── _addMapEntry.js │ │ ├── _addSetEntry.js │ │ ├── _apply.js │ │ ├── _arrayAggregator.js │ │ ├── _arrayEach.js │ │ ├── _arrayEachRight.js │ │ ├── _arrayEvery.js │ │ ├── _arrayFilter.js │ │ ├── _arrayIncludes.js │ │ ├── _arrayIncludesWith.js │ │ ├── _arrayLikeKeys.js │ │ ├── _arrayMap.js │ │ ├── _arrayPush.js │ │ ├── _arrayReduce.js │ │ ├── _arrayReduceRight.js │ │ ├── _arraySample.js │ │ ├── _arraySampleSize.js │ │ ├── _arrayShuffle.js │ │ ├── _arraySome.js │ │ ├── _asciiSize.js │ │ ├── _asciiToArray.js │ │ ├── _asciiWords.js │ │ ├── _assignMergeValue.js │ │ ├── _assignValue.js │ │ ├── _assocIndexOf.js │ │ ├── _baseAggregator.js │ │ ├── _baseAssign.js │ │ ├── _baseAssignIn.js │ │ ├── _baseAssignValue.js │ │ ├── _baseAt.js │ │ ├── _baseClamp.js │ │ ├── _baseClone.js │ │ ├── _baseConforms.js │ │ ├── _baseConformsTo.js │ │ ├── _baseCreate.js │ │ ├── _baseDelay.js │ │ ├── _baseDifference.js │ │ ├── _baseEach.js │ │ ├── _baseEachRight.js │ │ ├── _baseEvery.js │ │ ├── _baseExtremum.js │ │ ├── _baseFill.js │ │ ├── _baseFilter.js │ │ ├── _baseFindIndex.js │ │ ├── _baseFindKey.js │ │ ├── _baseFlatten.js │ │ ├── _baseFor.js │ │ ├── _baseForOwn.js │ │ ├── _baseForOwnRight.js │ │ ├── _baseForRight.js │ │ ├── _baseFunctions.js │ │ ├── _baseGet.js │ │ ├── _baseGetAllKeys.js │ │ ├── _baseGetTag.js │ │ ├── _baseGt.js │ │ ├── _baseHas.js │ │ ├── _baseHasIn.js │ │ ├── _baseInRange.js │ │ ├── _baseIndexOf.js │ │ ├── _baseIndexOfWith.js │ │ ├── _baseIntersection.js │ │ ├── _baseInverter.js │ │ ├── _baseInvoke.js │ │ ├── _baseIsArguments.js │ │ ├── _baseIsArrayBuffer.js │ │ ├── _baseIsDate.js │ │ ├── _baseIsEqual.js │ │ ├── _baseIsEqualDeep.js │ │ ├── _baseIsMap.js │ │ ├── _baseIsMatch.js │ │ ├── _baseIsNaN.js │ │ ├── _baseIsNative.js │ │ ├── _baseIsRegExp.js │ │ ├── _baseIsSet.js │ │ ├── _baseIsTypedArray.js │ │ ├── _baseIteratee.js │ │ ├── _baseKeys.js │ │ ├── _baseKeysIn.js │ │ ├── _baseLodash.js │ │ ├── _baseLt.js │ │ ├── _baseMap.js │ │ ├── _baseMatches.js │ │ ├── _baseMatchesProperty.js │ │ ├── _baseMean.js │ │ ├── _baseMerge.js │ │ ├── _baseMergeDeep.js │ │ ├── _baseNth.js │ │ ├── _baseOrderBy.js │ │ ├── _basePick.js │ │ ├── _basePickBy.js │ │ ├── _baseProperty.js │ │ ├── _basePropertyDeep.js │ │ ├── _basePropertyOf.js │ │ ├── _basePullAll.js │ │ ├── _basePullAt.js │ │ ├── _baseRandom.js │ │ ├── _baseRange.js │ │ ├── _baseReduce.js │ │ ├── _baseRepeat.js │ │ ├── _baseRest.js │ │ ├── _baseSample.js │ │ ├── _baseSampleSize.js │ │ ├── _baseSet.js │ │ ├── _baseSetData.js │ │ ├── _baseSetToString.js │ │ ├── _baseShuffle.js │ │ ├── _baseSlice.js │ │ ├── _baseSome.js │ │ ├── _baseSortBy.js │ │ ├── _baseSortedIndex.js │ │ ├── _baseSortedIndexBy.js │ │ ├── _baseSortedUniq.js │ │ ├── _baseSum.js │ │ ├── _baseTimes.js │ │ ├── _baseToNumber.js │ │ ├── _baseToPairs.js │ │ ├── _baseToString.js │ │ ├── _baseUnary.js │ │ ├── _baseUniq.js │ │ ├── _baseUnset.js │ │ ├── _baseUpdate.js │ │ ├── _baseValues.js │ │ ├── _baseWhile.js │ │ ├── _baseWrapperValue.js │ │ ├── _baseXor.js │ │ ├── _baseZipObject.js │ │ ├── _cacheHas.js │ │ ├── _castArrayLikeObject.js │ │ ├── _castFunction.js │ │ ├── _castPath.js │ │ ├── _castRest.js │ │ ├── _castSlice.js │ │ ├── _charsEndIndex.js │ │ ├── _charsStartIndex.js │ │ ├── _cloneArrayBuffer.js │ │ ├── _cloneBuffer.js │ │ ├── _cloneDataView.js │ │ ├── _cloneMap.js │ │ ├── _cloneRegExp.js │ │ ├── _cloneSet.js │ │ ├── _cloneSymbol.js │ │ ├── _cloneTypedArray.js │ │ ├── _compareAscending.js │ │ ├── _compareMultiple.js │ │ ├── _composeArgs.js │ │ ├── _composeArgsRight.js │ │ ├── _copyArray.js │ │ ├── _copyObject.js │ │ ├── _copySymbols.js │ │ ├── _copySymbolsIn.js │ │ ├── _coreJsData.js │ │ ├── _countHolders.js │ │ ├── _createAggregator.js │ │ ├── _createAssigner.js │ │ ├── _createBaseEach.js │ │ ├── _createBaseFor.js │ │ ├── _createBind.js │ │ ├── _createCaseFirst.js │ │ ├── _createCompounder.js │ │ ├── _createCtor.js │ │ ├── _createCurry.js │ │ ├── _createFind.js │ │ ├── _createFlow.js │ │ ├── _createHybrid.js │ │ ├── _createInverter.js │ │ ├── _createMathOperation.js │ │ ├── _createOver.js │ │ ├── _createPadding.js │ │ ├── _createPartial.js │ │ ├── _createRange.js │ │ ├── _createRecurry.js │ │ ├── _createRelationalOperation.js │ │ ├── _createRound.js │ │ ├── _createSet.js │ │ ├── _createToPairs.js │ │ ├── _createWrap.js │ │ ├── _customDefaultsAssignIn.js │ │ ├── _customDefaultsMerge.js │ │ ├── _customOmitClone.js │ │ ├── _deburrLetter.js │ │ ├── _defineProperty.js │ │ ├── _equalArrays.js │ │ ├── _equalByTag.js │ │ ├── _equalObjects.js │ │ ├── _escapeHtmlChar.js │ │ ├── _escapeStringChar.js │ │ ├── _flatRest.js │ │ ├── _freeGlobal.js │ │ ├── _getAllKeys.js │ │ ├── _getAllKeysIn.js │ │ ├── _getData.js │ │ ├── _getFuncName.js │ │ ├── _getHolder.js │ │ ├── _getMapData.js │ │ ├── _getMatchData.js │ │ ├── _getNative.js │ │ ├── _getPrototype.js │ │ ├── _getRawTag.js │ │ ├── _getSymbols.js │ │ ├── _getSymbolsIn.js │ │ ├── _getTag.js │ │ ├── _getValue.js │ │ ├── _getView.js │ │ ├── _getWrapDetails.js │ │ ├── _hasPath.js │ │ ├── _hasUnicode.js │ │ ├── _hasUnicodeWord.js │ │ ├── _hashClear.js │ │ ├── _hashDelete.js │ │ ├── _hashGet.js │ │ ├── _hashHas.js │ │ ├── _hashSet.js │ │ ├── _initCloneArray.js │ │ ├── _initCloneByTag.js │ │ ├── _initCloneObject.js │ │ ├── _insertWrapDetails.js │ │ ├── _isFlattenable.js │ │ ├── _isIndex.js │ │ ├── _isIterateeCall.js │ │ ├── _isKey.js │ │ ├── _isKeyable.js │ │ ├── _isLaziable.js │ │ ├── _isMaskable.js │ │ ├── _isMasked.js │ │ ├── _isPrototype.js │ │ ├── _isStrictComparable.js │ │ ├── _iteratorToArray.js │ │ ├── _lazyClone.js │ │ ├── _lazyReverse.js │ │ ├── _lazyValue.js │ │ ├── _listCacheClear.js │ │ ├── _listCacheDelete.js │ │ ├── _listCacheGet.js │ │ ├── _listCacheHas.js │ │ ├── _listCacheSet.js │ │ ├── _mapCacheClear.js │ │ ├── _mapCacheDelete.js │ │ ├── _mapCacheGet.js │ │ ├── _mapCacheHas.js │ │ ├── _mapCacheSet.js │ │ ├── _mapToArray.js │ │ ├── _matchesStrictComparable.js │ │ ├── _memoizeCapped.js │ │ ├── _mergeData.js │ │ ├── _metaMap.js │ │ ├── _nativeCreate.js │ │ ├── _nativeKeys.js │ │ ├── _nativeKeysIn.js │ │ ├── _nodeUtil.js │ │ ├── _objectToString.js │ │ ├── _overArg.js │ │ ├── _overRest.js │ │ ├── _parent.js │ │ ├── _reEscape.js │ │ ├── _reEvaluate.js │ │ ├── _reInterpolate.js │ │ ├── _realNames.js │ │ ├── _reorder.js │ │ ├── _replaceHolders.js │ │ ├── _root.js │ │ ├── _setCacheAdd.js │ │ ├── _setCacheHas.js │ │ ├── _setData.js │ │ ├── _setToArray.js │ │ ├── _setToPairs.js │ │ ├── _setToString.js │ │ ├── _setWrapToString.js │ │ ├── _shortOut.js │ │ ├── _shuffleSelf.js │ │ ├── _stackClear.js │ │ ├── _stackDelete.js │ │ ├── _stackGet.js │ │ ├── _stackHas.js │ │ ├── _stackSet.js │ │ ├── _strictIndexOf.js │ │ ├── _strictLastIndexOf.js │ │ ├── _stringSize.js │ │ ├── _stringToArray.js │ │ ├── _stringToPath.js │ │ ├── _toKey.js │ │ ├── _toSource.js │ │ ├── _unescapeHtmlChar.js │ │ ├── _unicodeSize.js │ │ ├── _unicodeToArray.js │ │ ├── _unicodeWords.js │ │ ├── _updateWrapDetails.js │ │ ├── _wrapperClone.js │ │ ├── add.js │ │ ├── after.js │ │ ├── array.js │ │ ├── ary.js │ │ ├── assign.js │ │ ├── assignIn.js │ │ ├── assignInWith.js │ │ ├── assignWith.js │ │ ├── at.js │ │ ├── attempt.js │ │ ├── before.js │ │ ├── bind.js │ │ ├── bindAll.js │ │ ├── bindKey.js │ │ ├── camelCase.js │ │ ├── capitalize.js │ │ ├── castArray.js │ │ ├── ceil.js │ │ ├── chain.js │ │ ├── chunk.js │ │ ├── clamp.js │ │ ├── clone.js │ │ ├── cloneDeep.js │ │ ├── cloneDeepWith.js │ │ ├── cloneWith.js │ │ ├── collection.js │ │ ├── commit.js │ │ ├── compact.js │ │ ├── concat.js │ │ ├── cond.js │ │ ├── conforms.js │ │ ├── conformsTo.js │ │ ├── constant.js │ │ ├── core.js │ │ ├── core.min.js │ │ ├── countBy.js │ │ ├── create.js │ │ ├── curry.js │ │ ├── curryRight.js │ │ ├── date.js │ │ ├── debounce.js │ │ ├── deburr.js │ │ ├── defaultTo.js │ │ ├── defaults.js │ │ ├── defaultsDeep.js │ │ ├── defer.js │ │ ├── delay.js │ │ ├── difference.js │ │ ├── differenceBy.js │ │ ├── differenceWith.js │ │ ├── divide.js │ │ ├── drop.js │ │ ├── dropRight.js │ │ ├── dropRightWhile.js │ │ ├── dropWhile.js │ │ ├── each.js │ │ ├── eachRight.js │ │ ├── endsWith.js │ │ ├── entries.js │ │ ├── entriesIn.js │ │ ├── eq.js │ │ ├── escape.js │ │ ├── escapeRegExp.js │ │ ├── every.js │ │ ├── extend.js │ │ ├── extendWith.js │ │ ├── fill.js │ │ ├── filter.js │ │ ├── find.js │ │ ├── findIndex.js │ │ ├── findKey.js │ │ ├── findLast.js │ │ ├── findLastIndex.js │ │ ├── findLastKey.js │ │ ├── first.js │ │ ├── flatMap.js │ │ ├── flatMapDeep.js │ │ ├── flatMapDepth.js │ │ ├── flatten.js │ │ ├── flattenDeep.js │ │ ├── flattenDepth.js │ │ ├── flip.js │ │ ├── floor.js │ │ ├── flow.js │ │ ├── flowRight.js │ │ ├── forEach.js │ │ ├── forEachRight.js │ │ ├── forIn.js │ │ ├── forInRight.js │ │ ├── forOwn.js │ │ ├── forOwnRight.js │ │ ├── fp.js │ │ ├── fp │ │ │ ├── F.js │ │ │ ├── T.js │ │ │ ├── __.js │ │ │ ├── _baseConvert.js │ │ │ ├── _convertBrowser.js │ │ │ ├── _falseOptions.js │ │ │ ├── _mapping.js │ │ │ ├── _util.js │ │ │ ├── add.js │ │ │ ├── after.js │ │ │ ├── all.js │ │ │ ├── allPass.js │ │ │ ├── always.js │ │ │ ├── any.js │ │ │ ├── anyPass.js │ │ │ ├── apply.js │ │ │ ├── array.js │ │ │ ├── ary.js │ │ │ ├── assign.js │ │ │ ├── assignAll.js │ │ │ ├── assignAllWith.js │ │ │ ├── assignIn.js │ │ │ ├── assignInAll.js │ │ │ ├── assignInAllWith.js │ │ │ ├── assignInWith.js │ │ │ ├── assignWith.js │ │ │ ├── assoc.js │ │ │ ├── assocPath.js │ │ │ ├── at.js │ │ │ ├── attempt.js │ │ │ ├── before.js │ │ │ ├── bind.js │ │ │ ├── bindAll.js │ │ │ ├── bindKey.js │ │ │ ├── camelCase.js │ │ │ ├── capitalize.js │ │ │ ├── castArray.js │ │ │ ├── ceil.js │ │ │ ├── chain.js │ │ │ ├── chunk.js │ │ │ ├── clamp.js │ │ │ ├── clone.js │ │ │ ├── cloneDeep.js │ │ │ ├── cloneDeepWith.js │ │ │ ├── cloneWith.js │ │ │ ├── collection.js │ │ │ ├── commit.js │ │ │ ├── compact.js │ │ │ ├── complement.js │ │ │ ├── compose.js │ │ │ ├── concat.js │ │ │ ├── cond.js │ │ │ ├── conforms.js │ │ │ ├── conformsTo.js │ │ │ ├── constant.js │ │ │ ├── contains.js │ │ │ ├── convert.js │ │ │ ├── countBy.js │ │ │ ├── create.js │ │ │ ├── curry.js │ │ │ ├── curryN.js │ │ │ ├── curryRight.js │ │ │ ├── curryRightN.js │ │ │ ├── date.js │ │ │ ├── debounce.js │ │ │ ├── deburr.js │ │ │ ├── defaultTo.js │ │ │ ├── defaults.js │ │ │ ├── defaultsAll.js │ │ │ ├── defaultsDeep.js │ │ │ ├── defaultsDeepAll.js │ │ │ ├── defer.js │ │ │ ├── delay.js │ │ │ ├── difference.js │ │ │ ├── differenceBy.js │ │ │ ├── differenceWith.js │ │ │ ├── dissoc.js │ │ │ ├── dissocPath.js │ │ │ ├── divide.js │ │ │ ├── drop.js │ │ │ ├── dropLast.js │ │ │ ├── dropLastWhile.js │ │ │ ├── dropRight.js │ │ │ ├── dropRightWhile.js │ │ │ ├── dropWhile.js │ │ │ ├── each.js │ │ │ ├── eachRight.js │ │ │ ├── endsWith.js │ │ │ ├── entries.js │ │ │ ├── entriesIn.js │ │ │ ├── eq.js │ │ │ ├── equals.js │ │ │ ├── escape.js │ │ │ ├── escapeRegExp.js │ │ │ ├── every.js │ │ │ ├── extend.js │ │ │ ├── extendAll.js │ │ │ ├── extendAllWith.js │ │ │ ├── extendWith.js │ │ │ ├── fill.js │ │ │ ├── filter.js │ │ │ ├── find.js │ │ │ ├── findFrom.js │ │ │ ├── findIndex.js │ │ │ ├── findIndexFrom.js │ │ │ ├── findKey.js │ │ │ ├── findLast.js │ │ │ ├── findLastFrom.js │ │ │ ├── findLastIndex.js │ │ │ ├── findLastIndexFrom.js │ │ │ ├── findLastKey.js │ │ │ ├── first.js │ │ │ ├── flatMap.js │ │ │ ├── flatMapDeep.js │ │ │ ├── flatMapDepth.js │ │ │ ├── flatten.js │ │ │ ├── flattenDeep.js │ │ │ ├── flattenDepth.js │ │ │ ├── flip.js │ │ │ ├── floor.js │ │ │ ├── flow.js │ │ │ ├── flowRight.js │ │ │ ├── forEach.js │ │ │ ├── forEachRight.js │ │ │ ├── forIn.js │ │ │ ├── forInRight.js │ │ │ ├── forOwn.js │ │ │ ├── forOwnRight.js │ │ │ ├── fromPairs.js │ │ │ ├── function.js │ │ │ ├── functions.js │ │ │ ├── functionsIn.js │ │ │ ├── get.js │ │ │ ├── getOr.js │ │ │ ├── groupBy.js │ │ │ ├── gt.js │ │ │ ├── gte.js │ │ │ ├── has.js │ │ │ ├── hasIn.js │ │ │ ├── head.js │ │ │ ├── identical.js │ │ │ ├── identity.js │ │ │ ├── inRange.js │ │ │ ├── includes.js │ │ │ ├── includesFrom.js │ │ │ ├── indexBy.js │ │ │ ├── indexOf.js │ │ │ ├── indexOfFrom.js │ │ │ ├── init.js │ │ │ ├── initial.js │ │ │ ├── intersection.js │ │ │ ├── intersectionBy.js │ │ │ ├── intersectionWith.js │ │ │ ├── invert.js │ │ │ ├── invertBy.js │ │ │ ├── invertObj.js │ │ │ ├── invoke.js │ │ │ ├── invokeArgs.js │ │ │ ├── invokeArgsMap.js │ │ │ ├── invokeMap.js │ │ │ ├── isArguments.js │ │ │ ├── isArray.js │ │ │ ├── isArrayBuffer.js │ │ │ ├── isArrayLike.js │ │ │ ├── isArrayLikeObject.js │ │ │ ├── isBoolean.js │ │ │ ├── isBuffer.js │ │ │ ├── isDate.js │ │ │ ├── isElement.js │ │ │ ├── isEmpty.js │ │ │ ├── isEqual.js │ │ │ ├── isEqualWith.js │ │ │ ├── isError.js │ │ │ ├── isFinite.js │ │ │ ├── isFunction.js │ │ │ ├── isInteger.js │ │ │ ├── isLength.js │ │ │ ├── isMap.js │ │ │ ├── isMatch.js │ │ │ ├── isMatchWith.js │ │ │ ├── isNaN.js │ │ │ ├── isNative.js │ │ │ ├── isNil.js │ │ │ ├── isNull.js │ │ │ ├── isNumber.js │ │ │ ├── isObject.js │ │ │ ├── isObjectLike.js │ │ │ ├── isPlainObject.js │ │ │ ├── isRegExp.js │ │ │ ├── isSafeInteger.js │ │ │ ├── isSet.js │ │ │ ├── isString.js │ │ │ ├── isSymbol.js │ │ │ ├── isTypedArray.js │ │ │ ├── isUndefined.js │ │ │ ├── isWeakMap.js │ │ │ ├── isWeakSet.js │ │ │ ├── iteratee.js │ │ │ ├── join.js │ │ │ ├── juxt.js │ │ │ ├── kebabCase.js │ │ │ ├── keyBy.js │ │ │ ├── keys.js │ │ │ ├── keysIn.js │ │ │ ├── lang.js │ │ │ ├── last.js │ │ │ ├── lastIndexOf.js │ │ │ ├── lastIndexOfFrom.js │ │ │ ├── lowerCase.js │ │ │ ├── lowerFirst.js │ │ │ ├── lt.js │ │ │ ├── lte.js │ │ │ ├── map.js │ │ │ ├── mapKeys.js │ │ │ ├── mapValues.js │ │ │ ├── matches.js │ │ │ ├── matchesProperty.js │ │ │ ├── math.js │ │ │ ├── max.js │ │ │ ├── maxBy.js │ │ │ ├── mean.js │ │ │ ├── meanBy.js │ │ │ ├── memoize.js │ │ │ ├── merge.js │ │ │ ├── mergeAll.js │ │ │ ├── mergeAllWith.js │ │ │ ├── mergeWith.js │ │ │ ├── method.js │ │ │ ├── methodOf.js │ │ │ ├── min.js │ │ │ ├── minBy.js │ │ │ ├── mixin.js │ │ │ ├── multiply.js │ │ │ ├── nAry.js │ │ │ ├── negate.js │ │ │ ├── next.js │ │ │ ├── noop.js │ │ │ ├── now.js │ │ │ ├── nth.js │ │ │ ├── nthArg.js │ │ │ ├── number.js │ │ │ ├── object.js │ │ │ ├── omit.js │ │ │ ├── omitAll.js │ │ │ ├── omitBy.js │ │ │ ├── once.js │ │ │ ├── orderBy.js │ │ │ ├── over.js │ │ │ ├── overArgs.js │ │ │ ├── overEvery.js │ │ │ ├── overSome.js │ │ │ ├── pad.js │ │ │ ├── padChars.js │ │ │ ├── padCharsEnd.js │ │ │ ├── padCharsStart.js │ │ │ ├── padEnd.js │ │ │ ├── padStart.js │ │ │ ├── parseInt.js │ │ │ ├── partial.js │ │ │ ├── partialRight.js │ │ │ ├── partition.js │ │ │ ├── path.js │ │ │ ├── pathEq.js │ │ │ ├── pathOr.js │ │ │ ├── paths.js │ │ │ ├── pick.js │ │ │ ├── pickAll.js │ │ │ ├── pickBy.js │ │ │ ├── pipe.js │ │ │ ├── placeholder.js │ │ │ ├── plant.js │ │ │ ├── pluck.js │ │ │ ├── prop.js │ │ │ ├── propEq.js │ │ │ ├── propOr.js │ │ │ ├── property.js │ │ │ ├── propertyOf.js │ │ │ ├── props.js │ │ │ ├── pull.js │ │ │ ├── pullAll.js │ │ │ ├── pullAllBy.js │ │ │ ├── pullAllWith.js │ │ │ ├── pullAt.js │ │ │ ├── random.js │ │ │ ├── range.js │ │ │ ├── rangeRight.js │ │ │ ├── rangeStep.js │ │ │ ├── rangeStepRight.js │ │ │ ├── rearg.js │ │ │ ├── reduce.js │ │ │ ├── reduceRight.js │ │ │ ├── reject.js │ │ │ ├── remove.js │ │ │ ├── repeat.js │ │ │ ├── replace.js │ │ │ ├── rest.js │ │ │ ├── restFrom.js │ │ │ ├── result.js │ │ │ ├── reverse.js │ │ │ ├── round.js │ │ │ ├── sample.js │ │ │ ├── sampleSize.js │ │ │ ├── seq.js │ │ │ ├── set.js │ │ │ ├── setWith.js │ │ │ ├── shuffle.js │ │ │ ├── size.js │ │ │ ├── slice.js │ │ │ ├── snakeCase.js │ │ │ ├── some.js │ │ │ ├── sortBy.js │ │ │ ├── sortedIndex.js │ │ │ ├── sortedIndexBy.js │ │ │ ├── sortedIndexOf.js │ │ │ ├── sortedLastIndex.js │ │ │ ├── sortedLastIndexBy.js │ │ │ ├── sortedLastIndexOf.js │ │ │ ├── sortedUniq.js │ │ │ ├── sortedUniqBy.js │ │ │ ├── split.js │ │ │ ├── spread.js │ │ │ ├── spreadFrom.js │ │ │ ├── startCase.js │ │ │ ├── startsWith.js │ │ │ ├── string.js │ │ │ ├── stubArray.js │ │ │ ├── stubFalse.js │ │ │ ├── stubObject.js │ │ │ ├── stubString.js │ │ │ ├── stubTrue.js │ │ │ ├── subtract.js │ │ │ ├── sum.js │ │ │ ├── sumBy.js │ │ │ ├── symmetricDifference.js │ │ │ ├── symmetricDifferenceBy.js │ │ │ ├── symmetricDifferenceWith.js │ │ │ ├── tail.js │ │ │ ├── take.js │ │ │ ├── takeLast.js │ │ │ ├── takeLastWhile.js │ │ │ ├── takeRight.js │ │ │ ├── takeRightWhile.js │ │ │ ├── takeWhile.js │ │ │ ├── tap.js │ │ │ ├── template.js │ │ │ ├── templateSettings.js │ │ │ ├── throttle.js │ │ │ ├── thru.js │ │ │ ├── times.js │ │ │ ├── toArray.js │ │ │ ├── toFinite.js │ │ │ ├── toInteger.js │ │ │ ├── toIterator.js │ │ │ ├── toJSON.js │ │ │ ├── toLength.js │ │ │ ├── toLower.js │ │ │ ├── toNumber.js │ │ │ ├── toPairs.js │ │ │ ├── toPairsIn.js │ │ │ ├── toPath.js │ │ │ ├── toPlainObject.js │ │ │ ├── toSafeInteger.js │ │ │ ├── toString.js │ │ │ ├── toUpper.js │ │ │ ├── transform.js │ │ │ ├── trim.js │ │ │ ├── trimChars.js │ │ │ ├── trimCharsEnd.js │ │ │ ├── trimCharsStart.js │ │ │ ├── trimEnd.js │ │ │ ├── trimStart.js │ │ │ ├── truncate.js │ │ │ ├── unapply.js │ │ │ ├── unary.js │ │ │ ├── unescape.js │ │ │ ├── union.js │ │ │ ├── unionBy.js │ │ │ ├── unionWith.js │ │ │ ├── uniq.js │ │ │ ├── uniqBy.js │ │ │ ├── uniqWith.js │ │ │ ├── uniqueId.js │ │ │ ├── unnest.js │ │ │ ├── unset.js │ │ │ ├── unzip.js │ │ │ ├── unzipWith.js │ │ │ ├── update.js │ │ │ ├── updateWith.js │ │ │ ├── upperCase.js │ │ │ ├── upperFirst.js │ │ │ ├── useWith.js │ │ │ ├── util.js │ │ │ ├── value.js │ │ │ ├── valueOf.js │ │ │ ├── values.js │ │ │ ├── valuesIn.js │ │ │ ├── where.js │ │ │ ├── whereEq.js │ │ │ ├── without.js │ │ │ ├── words.js │ │ │ ├── wrap.js │ │ │ ├── wrapperAt.js │ │ │ ├── wrapperChain.js │ │ │ ├── wrapperLodash.js │ │ │ ├── wrapperReverse.js │ │ │ ├── wrapperValue.js │ │ │ ├── xor.js │ │ │ ├── xorBy.js │ │ │ ├── xorWith.js │ │ │ ├── zip.js │ │ │ ├── zipAll.js │ │ │ ├── zipObj.js │ │ │ ├── zipObject.js │ │ │ ├── zipObjectDeep.js │ │ │ └── zipWith.js │ │ ├── fromPairs.js │ │ ├── function.js │ │ ├── functions.js │ │ ├── functionsIn.js │ │ ├── get.js │ │ ├── groupBy.js │ │ ├── gt.js │ │ ├── gte.js │ │ ├── has.js │ │ ├── hasIn.js │ │ ├── head.js │ │ ├── identity.js │ │ ├── inRange.js │ │ ├── includes.js │ │ ├── index.js │ │ ├── indexOf.js │ │ ├── initial.js │ │ ├── intersection.js │ │ ├── intersectionBy.js │ │ ├── intersectionWith.js │ │ ├── invert.js │ │ ├── invertBy.js │ │ ├── invoke.js │ │ ├── invokeMap.js │ │ ├── isArguments.js │ │ ├── isArray.js │ │ ├── isArrayBuffer.js │ │ ├── isArrayLike.js │ │ ├── isArrayLikeObject.js │ │ ├── isBoolean.js │ │ ├── isBuffer.js │ │ ├── isDate.js │ │ ├── isElement.js │ │ ├── isEmpty.js │ │ ├── isEqual.js │ │ ├── isEqualWith.js │ │ ├── isError.js │ │ ├── isFinite.js │ │ ├── isFunction.js │ │ ├── isInteger.js │ │ ├── isLength.js │ │ ├── isMap.js │ │ ├── isMatch.js │ │ ├── isMatchWith.js │ │ ├── isNaN.js │ │ ├── isNative.js │ │ ├── isNil.js │ │ ├── isNull.js │ │ ├── isNumber.js │ │ ├── isObject.js │ │ ├── isObjectLike.js │ │ ├── isPlainObject.js │ │ ├── isRegExp.js │ │ ├── isSafeInteger.js │ │ ├── isSet.js │ │ ├── isString.js │ │ ├── isSymbol.js │ │ ├── isTypedArray.js │ │ ├── isUndefined.js │ │ ├── isWeakMap.js │ │ ├── isWeakSet.js │ │ ├── iteratee.js │ │ ├── join.js │ │ ├── kebabCase.js │ │ ├── keyBy.js │ │ ├── keys.js │ │ ├── keysIn.js │ │ ├── lang.js │ │ ├── last.js │ │ ├── lastIndexOf.js │ │ ├── lodash.js │ │ ├── lodash.min.js │ │ ├── lowerCase.js │ │ ├── lowerFirst.js │ │ ├── lt.js │ │ ├── lte.js │ │ ├── map.js │ │ ├── mapKeys.js │ │ ├── mapValues.js │ │ ├── matches.js │ │ ├── matchesProperty.js │ │ ├── math.js │ │ ├── max.js │ │ ├── maxBy.js │ │ ├── mean.js │ │ ├── meanBy.js │ │ ├── memoize.js │ │ ├── merge.js │ │ ├── mergeWith.js │ │ ├── method.js │ │ ├── methodOf.js │ │ ├── min.js │ │ ├── minBy.js │ │ ├── mixin.js │ │ ├── multiply.js │ │ ├── negate.js │ │ ├── next.js │ │ ├── noop.js │ │ ├── now.js │ │ ├── nth.js │ │ ├── nthArg.js │ │ ├── number.js │ │ ├── object.js │ │ ├── omit.js │ │ ├── omitBy.js │ │ ├── once.js │ │ ├── orderBy.js │ │ ├── over.js │ │ ├── overArgs.js │ │ ├── overEvery.js │ │ ├── overSome.js │ │ ├── package.json │ │ ├── pad.js │ │ ├── padEnd.js │ │ ├── padStart.js │ │ ├── parseInt.js │ │ ├── partial.js │ │ ├── partialRight.js │ │ ├── partition.js │ │ ├── pick.js │ │ ├── pickBy.js │ │ ├── plant.js │ │ ├── property.js │ │ ├── propertyOf.js │ │ ├── pull.js │ │ ├── pullAll.js │ │ ├── pullAllBy.js │ │ ├── pullAllWith.js │ │ ├── pullAt.js │ │ ├── random.js │ │ ├── range.js │ │ ├── rangeRight.js │ │ ├── rearg.js │ │ ├── reduce.js │ │ ├── reduceRight.js │ │ ├── reject.js │ │ ├── remove.js │ │ ├── repeat.js │ │ ├── replace.js │ │ ├── rest.js │ │ ├── result.js │ │ ├── reverse.js │ │ ├── round.js │ │ ├── sample.js │ │ ├── sampleSize.js │ │ ├── seq.js │ │ ├── set.js │ │ ├── setWith.js │ │ ├── shuffle.js │ │ ├── size.js │ │ ├── slice.js │ │ ├── snakeCase.js │ │ ├── some.js │ │ ├── sortBy.js │ │ ├── sortedIndex.js │ │ ├── sortedIndexBy.js │ │ ├── sortedIndexOf.js │ │ ├── sortedLastIndex.js │ │ ├── sortedLastIndexBy.js │ │ ├── sortedLastIndexOf.js │ │ ├── sortedUniq.js │ │ ├── sortedUniqBy.js │ │ ├── split.js │ │ ├── spread.js │ │ ├── startCase.js │ │ ├── startsWith.js │ │ ├── string.js │ │ ├── stubArray.js │ │ ├── stubFalse.js │ │ ├── stubObject.js │ │ ├── stubString.js │ │ ├── stubTrue.js │ │ ├── subtract.js │ │ ├── sum.js │ │ ├── sumBy.js │ │ ├── tail.js │ │ ├── take.js │ │ ├── takeRight.js │ │ ├── takeRightWhile.js │ │ ├── takeWhile.js │ │ ├── tap.js │ │ ├── template.js │ │ ├── templateSettings.js │ │ ├── throttle.js │ │ ├── thru.js │ │ ├── times.js │ │ ├── toArray.js │ │ ├── toFinite.js │ │ ├── toInteger.js │ │ ├── toIterator.js │ │ ├── toJSON.js │ │ ├── toLength.js │ │ ├── toLower.js │ │ ├── toNumber.js │ │ ├── toPairs.js │ │ ├── toPairsIn.js │ │ ├── toPath.js │ │ ├── toPlainObject.js │ │ ├── toSafeInteger.js │ │ ├── toString.js │ │ ├── toUpper.js │ │ ├── transform.js │ │ ├── trim.js │ │ ├── trimEnd.js │ │ ├── trimStart.js │ │ ├── truncate.js │ │ ├── unary.js │ │ ├── unescape.js │ │ ├── union.js │ │ ├── unionBy.js │ │ ├── unionWith.js │ │ ├── uniq.js │ │ ├── uniqBy.js │ │ ├── uniqWith.js │ │ ├── uniqueId.js │ │ ├── unset.js │ │ ├── unzip.js │ │ ├── unzipWith.js │ │ ├── update.js │ │ ├── updateWith.js │ │ ├── upperCase.js │ │ ├── upperFirst.js │ │ ├── util.js │ │ ├── value.js │ │ ├── valueOf.js │ │ ├── values.js │ │ ├── valuesIn.js │ │ ├── without.js │ │ ├── words.js │ │ ├── wrap.js │ │ ├── wrapperAt.js │ │ ├── wrapperChain.js │ │ ├── wrapperLodash.js │ │ ├── wrapperReverse.js │ │ ├── wrapperValue.js │ │ ├── xor.js │ │ ├── xorBy.js │ │ ├── xorWith.js │ │ ├── zip.js │ │ ├── zipObject.js │ │ ├── zipObjectDeep.js │ │ └── zipWith.js │ ├── punycode │ │ ├── LICENSE-MIT.txt │ │ ├── README.md │ │ ├── package.json │ │ └── punycode.js │ ├── querystring │ │ ├── .History.md.un~ │ │ ├── .Readme.md.un~ │ │ ├── .package.json.un~ │ │ ├── .travis.yml │ │ ├── History.md │ │ ├── License.md │ │ ├── Readme.md │ │ ├── decode.js │ │ ├── encode.js │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ ├── .index.js.un~ │ │ │ ├── common-index.js │ │ │ ├── index.js │ │ │ └── tap-index.js │ ├── sax │ │ ├── LICENSE │ │ ├── LICENSE-W3C.html │ │ ├── README.md │ │ ├── lib │ │ │ └── sax.js │ │ └── package.json │ ├── stack-trace │ │ ├── .npmignore │ │ ├── License │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── lib │ │ │ └── stack-trace.js │ │ └── package.json │ ├── url │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── .zuul.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ ├── test.js │ │ └── url.js │ ├── uuid │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── HISTORY.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bin │ │ │ └── uuid │ │ ├── index.js │ │ ├── lib │ │ │ ├── bytesToUuid.js │ │ │ ├── rng-browser.js │ │ │ └── rng.js │ │ ├── package.json │ │ ├── test │ │ │ ├── mocha.opts │ │ │ └── test.js │ │ ├── v1.js │ │ └── v4.js │ ├── winston-firehose │ │ ├── .babelrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── lib │ │ │ ├── firehose.js │ │ │ └── index.js │ │ ├── package.json │ │ └── spec │ │ │ ├── firehoseLoggerSpec.js │ │ │ └── support │ │ │ ├── jasmine.json │ │ │ └── mock-firehoser.js │ ├── winston │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── winston.js │ │ │ └── winston │ │ │ │ ├── common.js │ │ │ │ ├── config.js │ │ │ │ ├── config │ │ │ │ ├── cli-config.js │ │ │ │ ├── npm-config.js │ │ │ │ └── syslog-config.js │ │ │ │ ├── container.js │ │ │ │ ├── exception.js │ │ │ │ ├── logger.js │ │ │ │ ├── transports.js │ │ │ │ └── transports │ │ │ │ ├── console.js │ │ │ │ ├── file.js │ │ │ │ ├── http.js │ │ │ │ ├── memory.js │ │ │ │ └── transport.js │ │ ├── package.json │ │ └── test │ │ │ ├── helpers.js │ │ │ └── transports │ │ │ ├── console-test.js │ │ │ ├── file-archive-test.js │ │ │ ├── file-maxfiles-test.js │ │ │ ├── file-maxsize-test.js │ │ │ ├── file-open-test.js │ │ │ ├── file-stress-test.js │ │ │ ├── file-tailrolling-test.js │ │ │ ├── file-test.js │ │ │ ├── http-test.js │ │ │ ├── memory-test.js │ │ │ └── transport.js │ ├── xml2js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── bom.js │ │ │ ├── processors.js │ │ │ └── xml2js.js │ │ └── package.json │ └── xmlbuilder │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ ├── XMLAttribute.js │ │ ├── XMLBuilder.js │ │ ├── XMLCData.js │ │ ├── XMLComment.js │ │ ├── XMLDTDAttList.js │ │ ├── XMLDTDElement.js │ │ ├── XMLDTDEntity.js │ │ ├── XMLDTDNotation.js │ │ ├── XMLDeclaration.js │ │ ├── XMLDocType.js │ │ ├── XMLElement.js │ │ ├── XMLNode.js │ │ ├── XMLProcessingInstruction.js │ │ ├── XMLRaw.js │ │ ├── XMLStringifier.js │ │ ├── XMLText.js │ │ └── index.js │ │ └── package.json │ ├── package.json │ ├── scripts │ ├── helloworld.conf │ ├── setversion.sh │ ├── start.sh │ ├── stop.sh │ └── validate.sh │ ├── templates │ └── helloworld-ecs-service-cf.template │ └── test │ └── helloworld_test.js ├── Chapter09 ├── EffectiveDevOpsTemplates │ ├── cloudtrail-cf-template.py │ ├── iam-groups-cf-template-part-1.py │ ├── iam-groups-cf-template-part-2.py │ ├── iam-groups-cf-template.py │ ├── nodeserver-vpc-cf-template.py │ ├── vpc-cf-template.py │ └── vpnserver-cf-template.py └── misc │ └── aws-waf-cf-template.py ├── LICENSE └── README.md /Chapter02/helloworld.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter02/helloworld.conf -------------------------------------------------------------------------------- /Chapter02/helloworld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter02/helloworld.js -------------------------------------------------------------------------------- /Chapter03/ansible/README.md: -------------------------------------------------------------------------------- 1 | # ansible -------------------------------------------------------------------------------- /Chapter03/ansible/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter03/ansible/ansible.cfg -------------------------------------------------------------------------------- /Chapter03/ansible/ec2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter03/ansible/ec2.ini -------------------------------------------------------------------------------- /Chapter03/ansible/ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter03/ansible/ec2.py -------------------------------------------------------------------------------- /Chapter03/ansible/helloworld.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter03/ansible/helloworld.yml -------------------------------------------------------------------------------- /Chapter03/ansible/localhost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter03/ansible/localhost -------------------------------------------------------------------------------- /Chapter03/ansible/roles/helloworld/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter03/ansible/roles/helloworld/.travis.yml -------------------------------------------------------------------------------- /Chapter03/ansible/roles/helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter03/ansible/roles/helloworld/README.md -------------------------------------------------------------------------------- /Chapter03/ansible/roles/helloworld/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for helloworld 3 | -------------------------------------------------------------------------------- /Chapter03/ansible/roles/helloworld/files/helloworld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter03/ansible/roles/helloworld/files/helloworld.js -------------------------------------------------------------------------------- /Chapter03/ansible/roles/helloworld/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter03/ansible/roles/helloworld/handlers/main.yml -------------------------------------------------------------------------------- /Chapter03/ansible/roles/helloworld/helloworld.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter03/ansible/roles/helloworld/helloworld.yml -------------------------------------------------------------------------------- /Chapter03/ansible/roles/helloworld/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter03/ansible/roles/helloworld/meta/main.yml -------------------------------------------------------------------------------- /Chapter03/ansible/roles/helloworld/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter03/ansible/roles/helloworld/tasks/main.yml -------------------------------------------------------------------------------- /Chapter03/ansible/roles/helloworld/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost -------------------------------------------------------------------------------- /Chapter03/ansible/roles/helloworld/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter03/ansible/roles/helloworld/tests/test.yml -------------------------------------------------------------------------------- /Chapter03/ansible/roles/helloworld/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for helloworld 3 | -------------------------------------------------------------------------------- /Chapter03/ansible/roles/nodejs/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter03/ansible/roles/nodejs/.travis.yml -------------------------------------------------------------------------------- /Chapter03/ansible/roles/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter03/ansible/roles/nodejs/README.md -------------------------------------------------------------------------------- /Chapter03/ansible/roles/nodejs/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for nodejs 3 | -------------------------------------------------------------------------------- /Chapter03/ansible/roles/nodejs/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for nodejs 3 | -------------------------------------------------------------------------------- /Chapter03/ansible/roles/nodejs/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter03/ansible/roles/nodejs/meta/main.yml -------------------------------------------------------------------------------- /Chapter03/ansible/roles/nodejs/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter03/ansible/roles/nodejs/tasks/main.yml -------------------------------------------------------------------------------- /Chapter03/ansible/roles/nodejs/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost -------------------------------------------------------------------------------- /Chapter03/ansible/roles/nodejs/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter03/ansible/roles/nodejs/tests/test.yml -------------------------------------------------------------------------------- /Chapter03/ansible/roles/nodejs/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for nodejs 3 | -------------------------------------------------------------------------------- /Chapter04/README.md: -------------------------------------------------------------------------------- 1 | # EffectiveDevOpsTerraform -------------------------------------------------------------------------------- /Chapter04/firstproject/ec2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter04/firstproject/ec2.tf -------------------------------------------------------------------------------- /Chapter04/fourthproject/helloworldansiblepull.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter04/fourthproject/helloworldansiblepull.tf -------------------------------------------------------------------------------- /Chapter04/secondproject/helloworldec2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter04/secondproject/helloworldec2.tf -------------------------------------------------------------------------------- /Chapter04/thirdproject/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter04/thirdproject/ansible.cfg -------------------------------------------------------------------------------- /Chapter04/thirdproject/helloworld.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter04/thirdproject/helloworld.yml -------------------------------------------------------------------------------- /Chapter04/thirdproject/helloworldansible.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter04/thirdproject/helloworldansible.tf -------------------------------------------------------------------------------- /Chapter04/thirdproject/myinventory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/thirdproject/roles/helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter04/thirdproject/roles/helloworld/README.md -------------------------------------------------------------------------------- /Chapter04/thirdproject/roles/helloworld/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for helloworld -------------------------------------------------------------------------------- /Chapter04/thirdproject/roles/helloworld/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter04/thirdproject/roles/helloworld/meta/main.yml -------------------------------------------------------------------------------- /Chapter04/thirdproject/roles/helloworld/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter04/thirdproject/roles/helloworld/tasks/main.yml -------------------------------------------------------------------------------- /Chapter04/thirdproject/roles/helloworld/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /Chapter04/thirdproject/roles/helloworld/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter04/thirdproject/roles/helloworld/tests/test.yml -------------------------------------------------------------------------------- /Chapter04/thirdproject/roles/helloworld/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for helloworld -------------------------------------------------------------------------------- /Chapter04/thirdproject/roles/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter04/thirdproject/roles/nodejs/README.md -------------------------------------------------------------------------------- /Chapter04/thirdproject/roles/nodejs/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for nodejs -------------------------------------------------------------------------------- /Chapter04/thirdproject/roles/nodejs/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for nodejs -------------------------------------------------------------------------------- /Chapter04/thirdproject/roles/nodejs/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter04/thirdproject/roles/nodejs/meta/main.yml -------------------------------------------------------------------------------- /Chapter04/thirdproject/roles/nodejs/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter04/thirdproject/roles/nodejs/tasks/main.yml -------------------------------------------------------------------------------- /Chapter04/thirdproject/roles/nodejs/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /Chapter04/thirdproject/roles/nodejs/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter04/thirdproject/roles/nodejs/tests/test.yml -------------------------------------------------------------------------------- /Chapter04/thirdproject/roles/nodejs/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for nodejs -------------------------------------------------------------------------------- /Chapter05/EffectiveDevOpsTemplates/README.md: -------------------------------------------------------------------------------- 1 | # EffectiveDevOpsTemplates -------------------------------------------------------------------------------- /Chapter05/EffectiveDevOpsTemplates/jenkins-cf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/EffectiveDevOpsTemplates/jenkins-cf.template -------------------------------------------------------------------------------- /Chapter05/ansible/README.md: -------------------------------------------------------------------------------- 1 | # ansible -------------------------------------------------------------------------------- /Chapter05/ansible/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/ansible.cfg -------------------------------------------------------------------------------- /Chapter05/ansible/ec2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/ec2.ini -------------------------------------------------------------------------------- /Chapter05/ansible/ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/ec2.py -------------------------------------------------------------------------------- /Chapter05/ansible/helloworld.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/helloworld.yml -------------------------------------------------------------------------------- /Chapter05/ansible/jenkins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/jenkins.yml -------------------------------------------------------------------------------- /Chapter05/ansible/library/aws_codedeploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/library/aws_codedeploy -------------------------------------------------------------------------------- /Chapter05/ansible/localhost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/localhost -------------------------------------------------------------------------------- /Chapter05/ansible/nodeserver.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/nodeserver.yml -------------------------------------------------------------------------------- /Chapter05/ansible/roles/codedeploy/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/roles/codedeploy/.travis.yml -------------------------------------------------------------------------------- /Chapter05/ansible/roles/codedeploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/roles/codedeploy/README.md -------------------------------------------------------------------------------- /Chapter05/ansible/roles/codedeploy/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for codedeploy 3 | -------------------------------------------------------------------------------- /Chapter05/ansible/roles/codedeploy/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for codedeploy 3 | -------------------------------------------------------------------------------- /Chapter05/ansible/roles/codedeploy/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/roles/codedeploy/meta/main.yml -------------------------------------------------------------------------------- /Chapter05/ansible/roles/codedeploy/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/roles/codedeploy/tasks/main.yml -------------------------------------------------------------------------------- /Chapter05/ansible/roles/codedeploy/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost -------------------------------------------------------------------------------- /Chapter05/ansible/roles/codedeploy/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/roles/codedeploy/tests/test.yml -------------------------------------------------------------------------------- /Chapter05/ansible/roles/codedeploy/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for codedeploy 3 | -------------------------------------------------------------------------------- /Chapter05/ansible/roles/helloworld/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/roles/helloworld/.travis.yml -------------------------------------------------------------------------------- /Chapter05/ansible/roles/helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/roles/helloworld/README.md -------------------------------------------------------------------------------- /Chapter05/ansible/roles/helloworld/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for helloworld 3 | -------------------------------------------------------------------------------- /Chapter05/ansible/roles/helloworld/files/helloworld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/roles/helloworld/files/helloworld.js -------------------------------------------------------------------------------- /Chapter05/ansible/roles/helloworld/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/roles/helloworld/handlers/main.yml -------------------------------------------------------------------------------- /Chapter05/ansible/roles/helloworld/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/roles/helloworld/meta/main.yml -------------------------------------------------------------------------------- /Chapter05/ansible/roles/helloworld/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/roles/helloworld/tasks/main.yml -------------------------------------------------------------------------------- /Chapter05/ansible/roles/helloworld/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost -------------------------------------------------------------------------------- /Chapter05/ansible/roles/helloworld/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/roles/helloworld/tests/test.yml -------------------------------------------------------------------------------- /Chapter05/ansible/roles/helloworld/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for helloworld 3 | -------------------------------------------------------------------------------- /Chapter05/ansible/roles/jenkins/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/roles/jenkins/.travis.yml -------------------------------------------------------------------------------- /Chapter05/ansible/roles/jenkins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/roles/jenkins/README.md -------------------------------------------------------------------------------- /Chapter05/ansible/roles/jenkins/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for jenkins 3 | -------------------------------------------------------------------------------- /Chapter05/ansible/roles/jenkins/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for jenkins 3 | -------------------------------------------------------------------------------- /Chapter05/ansible/roles/jenkins/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/roles/jenkins/meta/main.yml -------------------------------------------------------------------------------- /Chapter05/ansible/roles/jenkins/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/roles/jenkins/tasks/main.yml -------------------------------------------------------------------------------- /Chapter05/ansible/roles/jenkins/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost -------------------------------------------------------------------------------- /Chapter05/ansible/roles/jenkins/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/roles/jenkins/tests/test.yml -------------------------------------------------------------------------------- /Chapter05/ansible/roles/jenkins/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for jenkins 3 | -------------------------------------------------------------------------------- /Chapter05/ansible/roles/nodejs/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/roles/nodejs/.travis.yml -------------------------------------------------------------------------------- /Chapter05/ansible/roles/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/roles/nodejs/README.md -------------------------------------------------------------------------------- /Chapter05/ansible/roles/nodejs/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for nodejs 3 | -------------------------------------------------------------------------------- /Chapter05/ansible/roles/nodejs/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for nodejs 3 | -------------------------------------------------------------------------------- /Chapter05/ansible/roles/nodejs/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/roles/nodejs/meta/main.yml -------------------------------------------------------------------------------- /Chapter05/ansible/roles/nodejs/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/roles/nodejs/tasks/main.yml -------------------------------------------------------------------------------- /Chapter05/ansible/roles/nodejs/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost -------------------------------------------------------------------------------- /Chapter05/ansible/roles/nodejs/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/ansible/roles/nodejs/tests/test.yml -------------------------------------------------------------------------------- /Chapter05/ansible/roles/nodejs/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for nodejs 3 | -------------------------------------------------------------------------------- /Chapter05/helloworld/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/helloworld/Jenkinsfile -------------------------------------------------------------------------------- /Chapter05/helloworld/README.md: -------------------------------------------------------------------------------- 1 | # helloworld -------------------------------------------------------------------------------- /Chapter05/helloworld/appspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/helloworld/appspec.yml -------------------------------------------------------------------------------- /Chapter05/helloworld/helloworld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/helloworld/helloworld.js -------------------------------------------------------------------------------- /Chapter05/helloworld/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/helloworld/package.json -------------------------------------------------------------------------------- /Chapter05/helloworld/scripts/helloworld.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/helloworld/scripts/helloworld.conf -------------------------------------------------------------------------------- /Chapter05/helloworld/scripts/start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | start helloworld 4 | -------------------------------------------------------------------------------- /Chapter05/helloworld/scripts/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/helloworld/scripts/stop.sh -------------------------------------------------------------------------------- /Chapter05/helloworld/scripts/validate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | curl -I localhost:3000 3 | -------------------------------------------------------------------------------- /Chapter05/helloworld/test/helloworld_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/helloworld/test/helloworld_test.js -------------------------------------------------------------------------------- /Chapter05/misc/CodeDeploy-Trust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter05/misc/CodeDeploy-Trust.json -------------------------------------------------------------------------------- /Chapter07/helloworld/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter07/helloworld/Dockerfile -------------------------------------------------------------------------------- /Chapter07/helloworld/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter07/helloworld/Jenkinsfile -------------------------------------------------------------------------------- /Chapter07/helloworld/README.md: -------------------------------------------------------------------------------- 1 | # helloworld -------------------------------------------------------------------------------- /Chapter07/helloworld/appspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter07/helloworld/appspec.yml -------------------------------------------------------------------------------- /Chapter07/helloworld/helloworld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter07/helloworld/helloworld.js -------------------------------------------------------------------------------- /Chapter07/helloworld/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter07/helloworld/package.json -------------------------------------------------------------------------------- /Chapter07/helloworld/scripts/helloworld.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter07/helloworld/scripts/helloworld.conf -------------------------------------------------------------------------------- /Chapter07/helloworld/scripts/start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | start helloworld 4 | -------------------------------------------------------------------------------- /Chapter07/helloworld/scripts/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter07/helloworld/scripts/stop.sh -------------------------------------------------------------------------------- /Chapter07/helloworld/scripts/validate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | curl -I localhost:3000 3 | -------------------------------------------------------------------------------- /Chapter07/helloworld/test/helloworld_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter07/helloworld/test/helloworld_test.js -------------------------------------------------------------------------------- /Chapter08/ansible/README.md: -------------------------------------------------------------------------------- 1 | # ansible -------------------------------------------------------------------------------- /Chapter08/ansible/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/ansible.cfg -------------------------------------------------------------------------------- /Chapter08/ansible/ec2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/ec2.ini -------------------------------------------------------------------------------- /Chapter08/ansible/ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/ec2.py -------------------------------------------------------------------------------- /Chapter08/ansible/helloworld.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/helloworld.yml -------------------------------------------------------------------------------- /Chapter08/ansible/jenkins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/jenkins.yml -------------------------------------------------------------------------------- /Chapter08/ansible/library/aws_codedeploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/library/aws_codedeploy -------------------------------------------------------------------------------- /Chapter08/ansible/localhost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/localhost -------------------------------------------------------------------------------- /Chapter08/ansible/nodeserver.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/nodeserver.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/awslogs/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/awslogs/.travis.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/awslogs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/awslogs/README.md -------------------------------------------------------------------------------- /Chapter08/ansible/roles/awslogs/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for awslogs 3 | -------------------------------------------------------------------------------- /Chapter08/ansible/roles/awslogs/files/awslogs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/awslogs/files/awslogs.conf -------------------------------------------------------------------------------- /Chapter08/ansible/roles/awslogs/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for awslogs 3 | -------------------------------------------------------------------------------- /Chapter08/ansible/roles/awslogs/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/awslogs/meta/main.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/awslogs/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/awslogs/tasks/main.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/awslogs/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost -------------------------------------------------------------------------------- /Chapter08/ansible/roles/awslogs/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/awslogs/tests/test.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/awslogs/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for awslogs 3 | -------------------------------------------------------------------------------- /Chapter08/ansible/roles/cloudwatch/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/cloudwatch/.travis.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/cloudwatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/cloudwatch/README.md -------------------------------------------------------------------------------- /Chapter08/ansible/roles/cloudwatch/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for cloudwatch 3 | -------------------------------------------------------------------------------- /Chapter08/ansible/roles/cloudwatch/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for cloudwatch 3 | -------------------------------------------------------------------------------- /Chapter08/ansible/roles/cloudwatch/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/cloudwatch/meta/main.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/cloudwatch/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/cloudwatch/tasks/main.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/cloudwatch/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost -------------------------------------------------------------------------------- /Chapter08/ansible/roles/cloudwatch/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/cloudwatch/tests/test.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/cloudwatch/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for cloudwatch 3 | -------------------------------------------------------------------------------- /Chapter08/ansible/roles/codedeploy/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/codedeploy/.travis.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/codedeploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/codedeploy/README.md -------------------------------------------------------------------------------- /Chapter08/ansible/roles/codedeploy/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for codedeploy 3 | -------------------------------------------------------------------------------- /Chapter08/ansible/roles/codedeploy/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for codedeploy 3 | -------------------------------------------------------------------------------- /Chapter08/ansible/roles/codedeploy/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/codedeploy/meta/main.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/codedeploy/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/codedeploy/tasks/main.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/codedeploy/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost -------------------------------------------------------------------------------- /Chapter08/ansible/roles/codedeploy/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/codedeploy/tests/test.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/codedeploy/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for codedeploy 3 | -------------------------------------------------------------------------------- /Chapter08/ansible/roles/helloworld/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/helloworld/.travis.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/helloworld/README.md -------------------------------------------------------------------------------- /Chapter08/ansible/roles/helloworld/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for helloworld 3 | -------------------------------------------------------------------------------- /Chapter08/ansible/roles/helloworld/files/helloworld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/helloworld/files/helloworld.js -------------------------------------------------------------------------------- /Chapter08/ansible/roles/helloworld/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/helloworld/handlers/main.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/helloworld/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/helloworld/meta/main.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/helloworld/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/helloworld/tasks/main.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/helloworld/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost -------------------------------------------------------------------------------- /Chapter08/ansible/roles/helloworld/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/helloworld/tests/test.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/helloworld/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for helloworld 3 | -------------------------------------------------------------------------------- /Chapter08/ansible/roles/jenkins/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/jenkins/.travis.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/jenkins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/jenkins/README.md -------------------------------------------------------------------------------- /Chapter08/ansible/roles/jenkins/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for jenkins 3 | -------------------------------------------------------------------------------- /Chapter08/ansible/roles/jenkins/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for jenkins 3 | -------------------------------------------------------------------------------- /Chapter08/ansible/roles/jenkins/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/jenkins/meta/main.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/jenkins/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/jenkins/tasks/main.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/jenkins/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost -------------------------------------------------------------------------------- /Chapter08/ansible/roles/jenkins/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/jenkins/tests/test.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/jenkins/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for jenkins 3 | -------------------------------------------------------------------------------- /Chapter08/ansible/roles/nodejs/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/nodejs/.travis.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/nodejs/README.md -------------------------------------------------------------------------------- /Chapter08/ansible/roles/nodejs/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for nodejs 3 | -------------------------------------------------------------------------------- /Chapter08/ansible/roles/nodejs/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for nodejs 3 | -------------------------------------------------------------------------------- /Chapter08/ansible/roles/nodejs/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/nodejs/meta/main.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/nodejs/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/nodejs/tasks/main.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/nodejs/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost -------------------------------------------------------------------------------- /Chapter08/ansible/roles/nodejs/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/ansible/roles/nodejs/tests/test.yml -------------------------------------------------------------------------------- /Chapter08/ansible/roles/nodejs/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for nodejs 3 | -------------------------------------------------------------------------------- /Chapter08/helloworld/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/Dockerfile -------------------------------------------------------------------------------- /Chapter08/helloworld/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/Jenkinsfile -------------------------------------------------------------------------------- /Chapter08/helloworld/README.md: -------------------------------------------------------------------------------- 1 | # helloworld -------------------------------------------------------------------------------- /Chapter08/helloworld/appspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/appspec.yml -------------------------------------------------------------------------------- /Chapter08/helloworld/conf/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/conf/logrotate -------------------------------------------------------------------------------- /Chapter08/helloworld/helloworld-part-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/helloworld-part-1.js -------------------------------------------------------------------------------- /Chapter08/helloworld/helloworld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/helloworld.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/.bin/uuid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/.bin/uuid -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/async/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/async/.jshintrc -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/async/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/async/.travis.yml -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/async/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/async/CHANGELOG.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/async/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/async/LICENSE -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/async/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/async/README.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/async/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/async/bower.json -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/async/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/async/component.json -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/async/lib/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/async/lib/async.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/async/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/async/package.json -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/aws-sdk/CHANGELOG.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/aws-sdk/LICENSE.txt -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/aws-sdk/NOTICE.txt -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/aws-sdk/README.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/SERVICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/aws-sdk/SERVICES.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/aws-sdk/UPGRADING.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/appstream-2016-12-01.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/batch-2016-08-10.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/budgets-2016-10-20.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/codebuild-2016-10-06.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/codepipeline-2015-07-09.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/codestar-2017-04-19.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/cognito-identity-2014-06-30.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/cognito-idp-2016-04-18.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/dax-2017-04-19.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/discovery-2015-11-01.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/entitlement.marketplace-2017-01-11.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/events-2015-10-07.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/gamelift-2015-10-01.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/inspector-2016-02-16.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/iot-2015-05-28.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/kinesisanalytics-2015-08-14.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/lightsail-2016-11-28.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/marketplacecommerceanalytics-2015-07-01.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/opsworkscm-2016-11-01.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/polly-2016-06-10.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/rds-2014-09-01.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/runtime.lex-2016-11-28.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/streams.dynamodb-2012-08-10.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/sts-2011-06-15.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/waf-2015-08-24.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/waf-regional-2016-11-28.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/apis/xray-2016-04-12.paginators.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/aws-sdk/browser.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/aws-sdk/global.d.ts -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/aws-sdk/global.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/aws-sdk/index.d.ts -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/aws-sdk/index.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/lib/aws.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/aws-sdk/lib/aws.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/lib/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/aws-sdk/lib/core.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/lib/empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/aws-sdk/lib/empty.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/lib/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/aws-sdk/lib/http.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/lib/services/polly.js: -------------------------------------------------------------------------------- 1 | require('../polly/presigner'); -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/aws-sdk/lib/util.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/aws-sdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/aws-sdk/package.json -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/base64-js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/base64-js/LICENSE -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/base64-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/base64-js/README.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/base64-js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/base64-js/index.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/bluebird/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/bluebird/LICENSE -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/bluebird/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/bluebird/README.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/buffer/.npmignore: -------------------------------------------------------------------------------- 1 | .zuul.yml 2 | perf/ 3 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/buffer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/buffer/.travis.yml -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/buffer/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/buffer/AUTHORS.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/buffer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/buffer/LICENSE -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/buffer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/buffer/README.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/buffer/bin/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/buffer/bin/test.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/buffer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/buffer/index.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/buffer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/buffer/package.json -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/buffer/test/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/buffer/test/basic.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/buffer/test/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/buffer/test/slice.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/buffer/test/write.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/buffer/test/write.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/colors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/colors/.travis.yml -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/colors/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/colors/ReadMe.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/colors/safe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/colors/safe.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/crypto-browserify/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/crypto-browserify/test/vectors/byte0000.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/crypto-browserify/test/vectors/byte0001.dat: -------------------------------------------------------------------------------- 1 | $ -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/cycle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/cycle/README.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/cycle/cycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/cycle/cycle.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/cycle/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/cycle/package.json -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/events/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/events/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/events/.travis.yml -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/events/.zuul.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/events/.zuul.yml -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/events/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/events/History.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/events/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/events/LICENSE -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/events/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/events/Readme.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/events/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/events/events.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/eyes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/eyes/LICENSE -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/eyes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/eyes/Makefile -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/eyes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/eyes/README.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/eyes/lib/eyes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/eyes/lib/eyes.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/eyes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/eyes/package.json -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/ieee754/.zuul.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/ieee754/.zuul.yml -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/ieee754/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/ieee754/LICENSE -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/ieee754/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/ieee754/README.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/ieee754/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/ieee754/index.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/isarray/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/isarray/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/isarray/Makefile -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/isarray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/isarray/README.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/isarray/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/isarray/index.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/isarray/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/isarray/test.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/isstream/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/isstream/.jshintrc -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/isstream/.npmignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/isstream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/isstream/README.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/isstream/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/isstream/test.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/jmespath/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/jmespath/.eslintrc -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/jmespath/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/jmespath/BASELINE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/jmespath/BASELINE -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/jmespath/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/jmespath/LICENSE -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/jmespath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/jmespath/README.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/jmespath/g.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/jmespath/g.sh -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/jmespath/jp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/jmespath/jp.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/jmespath/l.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/jmespath/l.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/jmespath/perf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/jmespath/perf.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/LICENSE -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/README.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_Hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_Hash.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_Map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_Map.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_Promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_Promise.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_Set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_Set.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_Stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_Stack.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_Symbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_Symbol.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_WeakMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_WeakMap.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_apply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_apply.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_baseAt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_baseAt.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_baseFor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_baseFor.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_baseGet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_baseGet.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_baseGt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_baseGt.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_baseHas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_baseHas.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_baseLt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_baseLt.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_baseMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_baseMap.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_baseNth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_baseNth.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_baseSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_baseSet.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_baseSum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_baseSum.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_baseXor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_baseXor.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_getData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_getData.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_getTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_getTag.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_getView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_getView.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_hasPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_hasPath.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_hashGet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_hashGet.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_hashHas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_hashHas.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_hashSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_hashSet.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_isIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_isIndex.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_isKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_isKey.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_metaMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_metaMap.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_overArg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_overArg.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_parent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_parent.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_reorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_reorder.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_root.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_setData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_setData.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/_toKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/_toKey.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/add.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/after.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/after.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/array.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/ary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/ary.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/assign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/assign.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/assignIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/assignIn.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/at.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/at.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/attempt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/attempt.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/before.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/before.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/bind.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/bindAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/bindAll.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/bindKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/bindKey.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/ceil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/ceil.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/chain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/chain.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/chunk.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/clamp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/clamp.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/clone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/clone.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/commit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/commit.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/compact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/compact.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/concat.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/cond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/cond.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/conforms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/conforms.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/constant.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/core.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/core.min.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/countBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/countBy.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/create.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/curry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/curry.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/date.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 'now': require('./now') 3 | }; 4 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/debounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/debounce.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/deburr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/deburr.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/defaults.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/defer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/defer.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/delay.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/divide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/divide.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/drop.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/each.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./forEach'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/eachRight.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./forEachRight'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/endsWith.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/endsWith.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/entries.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./toPairs'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/entriesIn.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./toPairsIn'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/eq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/eq.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/escape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/escape.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/every.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/every.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/extend.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignIn'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/extendWith.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignInWith'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fill.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/filter.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/find.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/findKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/findKey.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/findLast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/findLast.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/first.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./head'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/flatMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/flatMap.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/flatten.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/flatten.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/flip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/flip.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/floor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/floor.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/flow.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/forEach.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/forEach.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/forIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/forIn.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/forOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/forOwn.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/F.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./stubFalse'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/T.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./stubTrue'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/__.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./placeholder'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/_util.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/add.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/after.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/after.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/all.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./every'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/allPass.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./overEvery'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/always.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./constant'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/any.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./some'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/anyPass.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./overSome'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/apply.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./spread'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/array.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/ary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/ary.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/assoc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./set'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/assocPath.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./set'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/at.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/at.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/bind.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/ceil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/ceil.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/chain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/chain.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/chunk.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/clamp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/clamp.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/clone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/clone.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/complement.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./negate'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/compose.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./flowRight'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/cond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/cond.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/conforms.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./conformsTo'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/contains.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./includes'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/curry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/curry.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/date.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/defer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/defer.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/delay.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/dissoc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./unset'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/dissocPath.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./unset'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/drop.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/dropLast.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dropRight'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/dropLastWhile.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dropRightWhile'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/each.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./forEach'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/eachRight.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./forEachRight'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/entries.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./toPairs'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/entriesIn.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./toPairsIn'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/eq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/eq.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/equals.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./isEqual'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/every.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/every.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/extend.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignIn'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/extendAll.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignInAll'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/extendAllWith.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignInAllWith'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/extendWith.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assignInWith'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/fill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/fill.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/find.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/first.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./head'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/flip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/flip.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/floor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/floor.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/flow.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/forIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/forIn.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/get.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/getOr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/getOr.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/gt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/gt.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/gte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/gte.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/has.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/has.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/hasIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/hasIn.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/head.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/identical.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./eq'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/indexBy.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./keyBy'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/init.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./initial'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/invertObj.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./invert'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/isMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/isMap.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/isNaN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/isNaN.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/isNil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/isNil.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/isSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/isSet.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/join.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/juxt.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./over'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/keyBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/keyBy.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/keys.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/lang.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/last.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/last.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/lt.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/lte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/lte.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/map.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/matches.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./isMatch'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/math.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/max.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/max.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/maxBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/maxBy.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/mean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/mean.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/merge.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/min.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/minBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/minBy.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/mixin.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/nAry.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./ary'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/next.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/noop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/noop.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/now.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/now.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/nth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/nth.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/omit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/omit.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/omitAll.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./omit'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/once.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/once.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/over.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/over.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/pad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/pad.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/path.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./get'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/pathEq.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./matchesProperty'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/pathOr.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./getOr'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/paths.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./at'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/pick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/pick.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/pickAll.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./pick'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/pipe.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./flow'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/plant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/plant.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/pluck.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./map'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/prop.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./get'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/propEq.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./matchesProperty'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/propOr.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./getOr'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/property.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./get'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/props.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./at'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/pull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/pull.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/range.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/rearg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/rearg.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/rest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/rest.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/round.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/round.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/seq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/seq.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/set.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/size.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/slice.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/some.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/some.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/split.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/sum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/sum.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/sumBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/sumBy.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/symmetricDifference.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./xor'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/symmetricDifferenceBy.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./xorBy'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/symmetricDifferenceWith.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./xorWith'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/tail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/tail.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/take.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/take.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/takeLast.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./takeRight'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/takeLastWhile.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./takeRightWhile'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/tap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/tap.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/thru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/thru.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/times.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/times.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/trim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/trim.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/unapply.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./rest'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/unary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/unary.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/union.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/union.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/uniq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/uniq.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/unnest.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./flatten'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/unset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/unset.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/unzip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/unzip.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/useWith.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./overArgs'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/util.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/value.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/where.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./conformsTo'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/whereEq.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./isMatch'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/words.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/wrap.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/xor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/xor.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/xorBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/xorBy.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/fp/zip.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/fp/zipObj.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./zipObject'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/function.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/get.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/groupBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/groupBy.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/gt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/gt.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/gte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/gte.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/has.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/has.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/hasIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/hasIn.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/head.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/identity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/identity.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/inRange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/inRange.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/includes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/includes.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lodash'); -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/indexOf.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/initial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/initial.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/invert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/invert.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/invertBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/invertBy.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/invoke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/invoke.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/isArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/isArray.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/isBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/isBuffer.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/isDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/isDate.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/isEmpty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/isEmpty.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/isEqual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/isEqual.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/isError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/isError.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/isFinite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/isFinite.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/isLength.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/isLength.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/isMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/isMap.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/isMatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/isMatch.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/isNaN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/isNaN.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/isNative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/isNative.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/isNil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/isNil.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/isNull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/isNull.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/isNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/isNumber.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/isObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/isObject.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/isRegExp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/isRegExp.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/isSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/isSet.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/isString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/isString.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/isSymbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/isSymbol.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/iteratee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/iteratee.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/join.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/keyBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/keyBy.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/keys.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/keysIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/keysIn.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/lang.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/last.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/last.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/lodash.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/lt.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/lte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/lte.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/map.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/mapKeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/mapKeys.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/matches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/matches.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/math.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/max.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/max.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/maxBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/maxBy.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/mean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/mean.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/meanBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/meanBy.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/memoize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/memoize.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/merge.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/method.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/methodOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/methodOf.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/min.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/minBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/minBy.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/mixin.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/multiply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/multiply.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/negate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/negate.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/next.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/noop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/noop.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/now.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/now.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/nth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/nth.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/nthArg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/nthArg.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/number.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/object.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/omit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/omit.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/omitBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/omitBy.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/once.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/once.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/orderBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/orderBy.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/over.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/over.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/overArgs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/overArgs.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/overSome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/overSome.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/pad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/pad.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/padEnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/padEnd.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/padStart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/padStart.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/parseInt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/parseInt.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/partial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/partial.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/pick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/pick.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/pickBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/pickBy.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/plant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/plant.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/property.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/pull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/pull.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/pullAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/pullAll.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/pullAt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/pullAt.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/random.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/range.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/rearg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/rearg.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/reduce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/reduce.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/reject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/reject.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/remove.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/repeat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/repeat.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/replace.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/rest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/rest.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/result.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/reverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/reverse.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/round.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/round.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/sample.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/seq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/seq.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/set.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/setWith.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/setWith.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/shuffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/shuffle.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/size.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/slice.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/some.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/some.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/sortBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/sortBy.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/split.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/spread.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/spread.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/string.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/stubTrue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/stubTrue.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/subtract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/subtract.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/sum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/sum.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/sumBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/sumBy.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/tail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/tail.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/take.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/take.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/tap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/tap.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/template.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/throttle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/throttle.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/thru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/thru.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/times.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/times.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/toArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/toArray.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/toFinite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/toFinite.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/toJSON.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/toLength.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/toLength.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/toLower.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/toLower.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/toNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/toNumber.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/toPairs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/toPairs.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/toPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/toPath.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/toString.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/toUpper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/toUpper.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/trim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/trim.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/trimEnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/trimEnd.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/truncate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/truncate.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/unary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/unary.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/unescape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/unescape.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/union.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/union.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/unionBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/unionBy.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/uniq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/uniq.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/uniqBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/uniqBy.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/uniqWith.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/uniqWith.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/uniqueId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/uniqueId.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/unset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/unset.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/unzip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/unzip.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/update.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/util.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/value.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/valueOf.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/values.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/valuesIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/valuesIn.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/without.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/without.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/words.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/wrap.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/xor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/xor.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/xorBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/xorBy.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/xorWith.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/xorWith.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/zip.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/lodash/zipWith.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/lodash/zipWith.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/punycode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/punycode/README.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/sax/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/sax/LICENSE -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/sax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/sax/README.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/sax/lib/sax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/sax/lib/sax.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/sax/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/sax/package.json -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/stack-trace/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/url/.npmignore: -------------------------------------------------------------------------------- 1 | test-url.js 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/url/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/url/.travis.yml -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/url/.zuul.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/url/.zuul.yml -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/url/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/url/LICENSE -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/url/README.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/url/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/url/package.json -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/url/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/url/test.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/url/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/url/url.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/uuid/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/uuid/.npmignore -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/uuid/.travis.yml -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/uuid/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/uuid/AUTHORS -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/uuid/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/uuid/HISTORY.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/uuid/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/uuid/LICENSE.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/uuid/README.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/uuid/bin/uuid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/uuid/bin/uuid -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/uuid/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/uuid/index.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/uuid/lib/rng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/uuid/lib/rng.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/uuid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/uuid/package.json -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/uuid/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --ui qunit 2 | --reporter spec 3 | --check-leaks 4 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/uuid/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/uuid/test/test.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/uuid/v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/uuid/v1.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/uuid/v4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/uuid/v4.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/winston-firehose/.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/winston/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/winston/LICENSE -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/winston/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/winston/README.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/xml2js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/xml2js/LICENSE -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/xml2js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/xml2js/README.md -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/xml2js/lib/bom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/xml2js/lib/bom.js -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/xmlbuilder/.npmignore: -------------------------------------------------------------------------------- 1 | .travis.yml 2 | src 3 | test 4 | perf 5 | coverage 6 | -------------------------------------------------------------------------------- /Chapter08/helloworld/node_modules/xmlbuilder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/node_modules/xmlbuilder/LICENSE -------------------------------------------------------------------------------- /Chapter08/helloworld/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/package.json -------------------------------------------------------------------------------- /Chapter08/helloworld/scripts/helloworld.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/scripts/helloworld.conf -------------------------------------------------------------------------------- /Chapter08/helloworld/scripts/setversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/scripts/setversion.sh -------------------------------------------------------------------------------- /Chapter08/helloworld/scripts/start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | start helloworld 4 | -------------------------------------------------------------------------------- /Chapter08/helloworld/scripts/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/scripts/stop.sh -------------------------------------------------------------------------------- /Chapter08/helloworld/scripts/validate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | curl -I localhost:3000 3 | -------------------------------------------------------------------------------- /Chapter08/helloworld/test/helloworld_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter08/helloworld/test/helloworld_test.js -------------------------------------------------------------------------------- /Chapter09/misc/aws-waf-cf-template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/Chapter09/misc/aws-waf-cf-template.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshraheja/Effective-DevOps-with-AWS/HEAD/README.md --------------------------------------------------------------------------------