Skip to content

Instantly share code, notes, and snippets.

@luanvuhlu
Created June 14, 2020 15:54
Show Gist options
  • Save luanvuhlu/51642da13eb614309a0c147bbec78fb8 to your computer and use it in GitHub Desktop.
Save luanvuhlu/51642da13eb614309a0c147bbec78fb8 to your computer and use it in GitHub Desktop.
Tự động run khi launch một EC2 instance mới
Content-Type: multipart/mixed; boundary="//"
MIME-Version: 1.0
--//
Content-Type: text/cloud-config; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="cloud-config.txt"
#cloud-config
cloud_final_modules:
- [scripts-user, always]
--//
Content-Type: text/x-shellscript; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="userdata.txt"
#!/bin/bash
service httpd start
hostname -I > /var/www/html/index.html
--//
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment