I hereby claim:
- I am tparikh on github.
- I am tparikh (https://keybase.io/tparikh) on keybase.
- I have a public key ASD3HeOLOPsHEY9NaSDyAc9RQEomsJ3sJ52S_qaCROerlwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| provider "aws" { | |
| region = "us-east-1" | |
| } | |
| variable "database_username" { | |
| type = string | |
| default = "csye6225master" | |
| } | |
| variable "database_password" { |
| { | |
| "AWSTemplateFormatVersion": "2010-09-09", | |
| "Description": "Launch EC2 & RDS Instance - CSYE 6225 Summer 2019", | |
| "Resources": { | |
| "dbSecurityGroup": { | |
| "Type": "AWS::EC2::SecurityGroup", | |
| "Properties": { | |
| "GroupDescription": "db security group", | |
| "VpcId": "vpc-b5719ecd", | |
| "SecurityGroupIngress": [ |
| { | |
| "variables": { | |
| "aws_access_key": "", | |
| "aws_secret_key": "", | |
| "aws_region": "", | |
| "subnet_id": "", | |
| "source_ami": "ami-0a313d6098716f372", | |
| "ssh_username":"ubuntu" | |
| }, | |
| "builders": [ |
| { | |
| "AWSTemplateFormatVersion": "2010-09-09", | |
| "Description": "Launch EC2 - CSYE 6225 Summer 2019", | |
| "Resources": { | |
| "myVPC": { | |
| "Type": "AWS::EC2::VPC", | |
| "Properties": { | |
| "CidrBlock": "10.0.0.0/16", | |
| "EnableDnsSupport": "true", | |
| "EnableDnsHostnames": "true", |
| { | |
| "AWSTemplateFormatVersion": "2010-09-09", | |
| "Description": "Launch EC2 - CSYE 6225 Summer 2019", | |
| "Resources": { | |
| "EC2Instance": { | |
| "Type": "AWS::EC2::Instance", | |
| "Properties": { | |
| "ImageId": "ami-9887c6e7", | |
| "InstanceType": "t2.micro", | |
| "SecurityGroupIds": [ |
| #!/bin/bash | |
| # Collaborator list, add, remove from a repository | |
| # (c) 2015 miraculixx | |
| # Author: github.com/miraculixx | |
| # MIT License, see below | |
| function help { | |
| echo "Add collaborators to one or more repositories on github" | |
| echo "" | |
| echo "Syntax: $0 -u user -p password [-l] [-D] -r repo1,repo2 <collaborator id>" |