Skip to content
View geseib's full-sized avatar
Block or Report

Block or report geseib

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. tgwwalk tgwwalk Public

    A Walkthrough of Deploying AWS Transit Gateway to Connect many VPCs to Your Datacenter

    Shell 15 6

  2. awsnetworkshop awsnetworkshop Public

    AWS Networking Workshop

    CSS 15 22

  3. getamis getamis Public

    generate Cloudformation YAML Mapping RegionMap section for all regions when given AMI name

    Shell 1

  4. AWS EC2 User data for simple webserv... AWS EC2 User data for simple webserver with host private IP address
    1
    #!/bin/bash
    2
    /usr/bin/yum -y install httpd
    3
    /sbin/chkconfig httpd on
    4
    /sbin/service httpd start
    5
    /bin/echo “Welcome to my web server. My private IP is” > /var/www/html/index.html