AWS EC2 생성시 고급 세부정보-사용자데이터에는 EC2가 부팅될 때 딱 한 번만 실행될 명령들을 적을 수 있다.
#!/bin/bash
# Use this for your user data (script from top to bottom)
# install httpd (Linux 2 version)
yum update -y
yum install -y httpd
systemctl start httpd
systemctl enable httpd
echo “<h1>Hello World from $(hostname -f)</h1>” > /var/www/html/index.html
이런식으로 업데이트나 설치같은 것들을 부팅 시 딱 한 번만 실행되도록 할 수 있는데 이걸 bootstrap 이라고 한다.