Skip to content

fugashy/aws_network_and_server_sample

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aws_network_and_server_sample

Construct Wordpress blog site on little secure VPC

  • Launch all

  • press enter to kill all of them

components after launch finished

  • VPC

    • Internet gateway

    • PublicSubnet

      • web_server container (ECS on EC2)

        Wordpress works

      • NAT Gateway with Elastic IP

      • PublicRootTable

    • PrivateSubnet

      • db_server container (ECS on EC2)

        MariaDB works

      • PrivateRootTable

dependency

  • python 3.7.4

  • boto3 1.18.21

required fee for AWS

  • NAT and EIP(Creation and running)

    NAT is used for pulling docker image.

required IAM roll for instance

  • eclInstanceRole

how to use

boto3 ver

  • launch

    python aws_network_and_server_sample/_boto3/main.py `pwd`/config/all.yaml
  • access to public IP of web_server_ec2 by your browser

    See stdout like create web_server_ec2: ip: xx.xxx.xxx.xx

  • press enter to kill

reference

docker images for ECS

  • web server

    • In public repos of dockerhub

      docker pull fugashy/aws_web_server_sample:latest
      
      # try
      docker run --rm -it --name web_server -p 80:80 aws_web_server_sample
  • db server

    • use official mariadb

      docker pull mariadb
      
      # try
      docker run -p 127.0.0.1:3306:3306 -e MARIADB_ROOT_PASSWORD=my-secret-pw -e MARIADB_DATABASE=wordpress --name db_server -it --rm mariadb