Skip to content

Instantly share code, notes, and snippets.

View JohnMichaelMiller's full-sized avatar

John Michael Miller JohnMichaelMiller

View GitHub Profile
@JohnMichaelMiller
JohnMichaelMiller / acg.ec2-101.sh
Last active October 19, 2018 15:44
AWS CLI code for the EC2 101 lab from the acloud.guru AWS Certified Develper Associate course
#!/bin/bash
### AWS CLI code for the EC2 101 lab from the acloud.guru AWS
### Certified Develper Associate course
# turn off history expansion
set +H
# Go home
region="us-east-1"
@JohnMichaelMiller
JohnMichaelMiller / acg.r53.sh
Last active January 11, 2022 04:15
AWS CLI code for the Route 53 lab from the acloud.guru AWS Certified Develper Associate course
#!/bin/bash
### AWS CLI code for the Route 53 lab from the acloud.guru AWS
### Certified Develper Associate course
# turn off history expansion
set +H
# Go home
region="us-east-1"
@JohnMichaelMiller
JohnMichaelMiller / acg.alb.sh
Last active November 10, 2020 12:41
AWS CLI code for the Application Load Balancer lab from the acloud.guru AWS Certified Develper Associate course
#!/bin/bash
### AWS CLI code for the Application Load Balancer lab from the
### acloud.guru AWS Certified Develper Associate course
# turn off history expansion
set +H
# Go home
region="us-east-1"
@JohnMichaelMiller
JohnMichaelMiller / acg.ec2-101.cf.sh
Last active October 19, 2018 15:42
AWS CLI code and Cloudformation template for the EC2 101 lab from the acloud.guru AWS Certified Develper Associate course
#!/bin/bash
### AWS CLI code and Cloudformation template for the EC2 101 lab
### from the acloud.guru AWS Certified Develper Associate course
# turn off history expansion
set +H
# Go home
region="us-east-1"
@JohnMichaelMiller
JohnMichaelMiller / acg.alb.cf.sh
Last active January 19, 2019 11:40
AWS CLI code to deploy the CloudFormation template for the Application Load Balancer lab from the acloud.guru AWS Certified Develper Associate course
#!/bin/bash
### AWS CLI code to deploy the CloudFormation template for the
### Application Load Balancer lab from the acloud.guru AWS
### Certified Develper Associate course
# turn off history expansion
set +H
# Go home
@JohnMichaelMiller
JohnMichaelMiller / acg.cli.sh
Last active October 19, 2018 15:41
AWS CLI code for the AWS CLI lab from the acloud.guru AWS Certified Develper Associate course
#!/bin/bash
### AWS CLI code for the AWS CLI lab from the acloud.guru AWS
### Certified Develper Associate course
# turn off history expansion
set +H
# Go home
region="us-east-1"
@JohnMichaelMiller
JohnMichaelMiller / acg.cli.cf.sh
Last active October 19, 2018 15:40
AWS CLI code and Cloudformation template for the AWS CLI lab from the acloud.guru AWS Certified Develper Associate course
#!/bin/bash
### AWS CLI code and Cloudformation template for the AWS CLI lab
### from the acloud.guru AWS Certified Develper Associate course
# turn off history expansion
set +H
# Go home
region="us-east-1"
@JohnMichaelMiller
JohnMichaelMiller / acg.ec2-s3.sh
Last active October 19, 2018 15:47
AWS CLI code for the EC2 with S3 lab from the acloud.guru AWS Certified Develper Associate course
#!/bin/bash
### AWS CLI code for the EC2 with S3 lab from the acloud.guru AWS
### Certified Develper Associate course
# turn off history expansion
set +H
# Go home
region="us-east-1"
@JohnMichaelMiller
JohnMichaelMiller / acg.ec2-s3.cf.sh
Last active October 19, 2018 15:45
AWS CLI code and Cloudformation template for the EC2 with S3 lab from the acloud.guru AWS Certified Develper Associate course
#!/bin/bash
### AWS CLI code and Cloudformation template for the EC2 with S3
### lab from the acloud.guru AWS Certified Develper Associate course
# turn off history expansion
set +H
# Go home
region="us-east-1"
@JohnMichaelMiller
JohnMichaelMiller / acg.ec2-s3.cf.yaml
Last active October 19, 2018 15:46
AWS CloudFormation template for the EC2 S3 lab from the acloud.guru AWS Certified Develper Associate course
---
### AWS CloudFormation template for the EC2 101 lab from the
### acloud.guru AWS Certified Develper Associate course
AWSTemplateFormatVersion: 2010-09-09
Description: acloud.guru EC2-S3 Lab
Outputs:
instanceId:
Description: Instance Identifier
Export:
Name: 'ec2-s3:InstanceId'