Skip to content

Instantly share code, notes, and snippets.

View sanudatta11's full-sized avatar
🏠
Working from home

Soumyajit Dutta sanudatta11

🏠
Working from home
View GitHub Profile
{
"aws_access_key": "${AWS_ACCESS_KEY_ID}",
"aws_secret_key": "${AWS_SECRET_ACCESS_KEY}",
"vpc_region": "${vpc_region}",
"vpc_id": "${vpc_id}",
"vpc_public_sn_id": "${vpc_public_sn_id}",
"vpc_public_sg_id": "${vpc_public_sg_id}",
"source_ami": "${source_ami}",
"instance_type": "${instance_type}",
"ssh_username": "${ssh_username}"
#!/bin/bash -e
main() {
sudo apt-get install -y nano
}
main
@sanudatta11
sanudatta11 / base_ami.json
Last active January 6, 2019 09:01
This is the Base AMI for Medium Article based on usage of Packer on AWS
{
"variables": {
"aws_access_key": "${AWS_ACCESS_KEY_ID}",
"aws_secret_key": "${AWS_SECRET_ACCESS_KEY}",
"vpc_region": "${vpc_region}",
"vpc_id": "${vpc_id}",
"vpc_public_sn_id": "${vpc_public_sn_id}",
"vpc_public_sg_id": "${vpc_public_sg_id}",
"source_ami": "${source_ami}",
"instance_type": "${instance_type}",
@sanudatta11
sanudatta11 / JSDoc Guide
Last active February 28, 2018 16:14
This is a simple Nooby JSDoc Guide
JSDoc-Style-Guide
Forked from the KimonoLabs JS Doc Style Guide
This guide was originally created by Shri Ganeshram as an internal style guide for Kimono Labs and is licensed under the MIT License. You are encouraged to fork this repository and make adjustments according to your preferences. It is currently a work in progress.
You can learn more about JSDoc here.
Table of Contents
Intro