Skip to content

Instantly share code, notes, and snippets.

View JohnMichaelMiller's full-sized avatar

John Michael Miller JohnMichaelMiller

View GitHub Profile

Keybase proof

I hereby claim:

  • I am johnmichaelmiller on github.
  • I am j0hnnycat (https://keybase.io/j0hnnycat) on keybase.
  • I have a public key ASDlwvAPKxPPZ9oIgtZBj0MijxqDNpz1Rvw_OcQRyJPvLAo

To claim this, I am signing this object:

@JohnMichaelMiller
JohnMichaelMiller / bootstrap.ps1
Last active April 19, 2022 17:23
PowerShell code for building Windows PCs using BoxStarter
[CmdletBinding()]
param (
[Parameter()]
[string]
$build = 'socrates'
)
write-output "start $build $($MyInvocation.MyCommand.Source)"
$env:BuildJsonFile = ".\$build.machine.json"
@JohnMichaelMiller
JohnMichaelMiller / acg.rds-multi-az.cf.yaml
Created October 19, 2018 16:10
AWS CloudFormation template for the RDS multi-AZ, data encryption, and read replica labs from the acloud.guru AWS Certified Develper Associate course
---
### AWS CloudFormation template for the RDS multi-AZ, data
### encryption, and read replica labs from the acloud.guru
### AWS Certified Develper Associate course
AWSTemplateFormatVersion: 2010-09-09
Description: acloud.guru RDS Multi-AZ and Read Replica Lab
Parameters: # Default values for template parameters are useful when testing templates in the AWS Web Console
dbInstanceType:
Type: String
Default: db.t2.small
@JohnMichaelMiller
JohnMichaelMiller / acg.rds-multi-az.cf.sh
Created October 19, 2018 16:07
AWS CLI code and Cloudformation template for the RDS multi-AZ, data encryption, and read replica labs from the acloud.guru AWS Certified Develper Associate course
#!/bin/bash
AWS CLI code and Cloudformation template for the RDS multi-AZ, data encryption, and read replica labs from the acloud.guru AWS Certified Develper Associate course
### AWS CLI code and Cloudformation template for the RDS
### multi-AZ, data encryption, and read replica labs from
### the acloud.guru AWS Certified Develper Associate course
# turn off history expansion
set +H
@JohnMichaelMiller
JohnMichaelMiller / acg.rds-multi-az.sh
Created October 17, 2018 21:39
AWS CLI code for the RDS Multi AZ lab from the acloud.guru AWS Certified Develper Associate course
#!/bin/bash
### AWS CLI code for the RDS db encryption, multi-AZ and read
### replica labs from the acloud.guru AWS Certified Develper
### Associate course
# turn off history expansion
set +H
# Go home
@JohnMichaelMiller
JohnMichaelMiller / acg.rds.cf.sh
Last active October 19, 2018 15:58
AWS CLI code and Cloudformation template for the RDS lab from the acloud.guru AWS Certified Develper Associate course
#!/bin/bash
### AWS CLI code and Cloudformation template for the RDS 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.rds.cf.yaml
Last active October 19, 2018 15:59
AWS CloudFormation template for the RDS lab from the acloud.guru AWS Certified Develper Associate course
---
### AWS CloudFormation template for the RDS lab from the
### acloud.guru AWS Certified Develper Associate course
AWSTemplateFormatVersion: 2010-09-09
Description: acloud.guru RDS Lab
Outputs:
instanceId:
Description: Instance Identifier
Export:
Name: 'rds:InstanceId'
@JohnMichaelMiller
JohnMichaelMiller / acg.rds.sh
Last active August 19, 2019 21:53
AWS CLI code for the RDS lab from the acloud.guru AWS Certified Develper Associate course
#!/bin/bash
### AWS CLI code for the RDS 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'
@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"