Skip to content

Instantly share code, notes, and snippets.

View sonnyyu's full-sized avatar

Sonny Yu sonnyyu

  • N/A
  • 22:15 (UTC -07:00)
View GitHub Profile
@sonnyyu
sonnyyu / vpc-fargate.yaml
Last active January 8, 2022 01:00 — forked from lizrice/vpc-fargate.yaml
Cloudformation template for setting up VPC and subnets for Fargate
# Usage:
# aws cloudformation --region us-east-1 create-stack --stack-name VPC --template-body file://vpc-fargate.yaml
# This template will:
# Create a VPC with:
# 2 Public Subnets
# 2 Private Subnets
# An Internet Gateway (with routes to it for Public Subnets)
# A NAT Gateway for outbound access (with routes from Private Subnets set to use it)
#
@sonnyyu
sonnyyu / ELK-install.sh
Last active April 22, 2018 23:42 — forked from sniper7kills/ELK-install.sh
ELK-Install-Ubuntu-16.04
#/bin/bash
#Ask some info
echo -n "Enter ELK Server IP or FQDN: "
read eip
echo -n "Enter Admin Web Password: "
read adpwd
#Update System
sudo apt-get update
sudo apt-get upgrade -y