Skip to content

Instantly share code, notes, and snippets.

@akdasari1980
akdasari1980 / README.md
Created June 20, 2018 02:14 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.

OP: @leonardofed founder @ plainflow.


@akdasari1980
akdasari1980 / cloudformation.json
Created September 6, 2019 15:34 — forked from nickpad/cloudformation.json
Example cloudformation template for auto scaling deploys
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "Auto scaling deploy example",
"Parameters": {
"AvailabilityZone": {
"Type": "String",
"Default": "us-west-1a"
},
"ImageId": {
"Type": "String"
@akdasari1980
akdasari1980 / Simple-S3Bucket-SNS
Created September 6, 2019 15:52 — forked from austoonz/PowerShellAssociation.yml
A CloudFormation template sample for creating an S3 Bucket with an SNS Trigger.
---
AWSTemplateFormatVersion: '2010-09-09'
Description: Simple S3 Bucket with SNS Trigger
Parameters:
BucketName:
Type: String
Description: The name of the S3 Bucket to create
@akdasari1980
akdasari1980 / create_example_stack.sh
Created October 10, 2019 09:37 — forked from nackjicholson/create_example_stack.sh
awscli shell script to create a cloudformation stack
#!/usr/bin/env bash
STACK_NAME=$1
if [ -z "$1" ]
then
echo "No STACK_NAME argument supplied"
exit 1
fi