Skip to content

Instantly share code, notes, and snippets.

@giuseppecossu
giuseppecossu / update-route53.sh
Created March 7, 2017 16:11 — forked from ddepaoli3/route53-update.sh
BASH Script to keep Route53 updated with your current external IP address
#!/bin/bash
# (optional) You might need to set your PATH variable at the top here
# depending on how you run this script
#PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
# Hosted Zone ID e.g. BJBK35SKMM9OE
ZONEID=$1
# The CNAME you want to update e.g. hello.example.com
@giuseppecossu
giuseppecossu / aws-certification.md
Created February 4, 2017 14:49 — forked from miglen/aws-certification.md
AWS Certification guide and notes on how to prepare for the aws associate certification architect, sysops and developer exams

AWS Certification notes

Those are my personal notes on AWS Solution Architect certification preparation. Hope you find them usefull.

To pass AWS certification, you should have:

  • Sound knowledge about most of the AWS services ( EC2, VPC, RDS, Cloudfront, S3, Route53 etc,)
  • Hands on experience with AWS services.
  • Good knowledge of disaster recovery, security and High availability architectures.

If you do not have prior hands-on experience and knowledge or you have little knowledge about AWS services, it is better to take an online course. If you already have experience in architecting solutions on AWS it is not necessary to take an online course.

@giuseppecossu
giuseppecossu / bootstrap_AWS_local_ansible_ubuntu_16_04.sh
Last active January 26, 2017 10:10 — forked from ddepaoli3/bootstrap_AWS_local_ansible_ubuntu_16_04.sh
Bootstrap to install and configure ubuntu 16.04 to allow it to run ansible locally and to clone git repo from codecommit
#!/bin/bash
sudo apt-get update
sudo apt-get install --yes python2.7 git ansible awscli
# You need to associate IAM role to your instance
git config --global credential.helper '!aws codecommit credential-helper $@'
git config --global credential.UseHttpPath true
# Now it is possibile to clone from codecommit and run ansiblo locally
# Clone your repo and run ansible