Difference between revisions of "AWS"
Jump to navigation
Jump to search
Line 11: | Line 11: | ||
*[https://help.ubuntu.com/community/CloudInit CloudInit] by Ubuntu | *[https://help.ubuntu.com/community/CloudInit CloudInit] by Ubuntu | ||
*[http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AESDG-chapter-instancedata.html Instance Metadata and User Data] AWS Documentation | *[http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AESDG-chapter-instancedata.html Instance Metadata and User Data] AWS Documentation | ||
[[Category: | [[Category:aws]] |
Revision as of 12:32, 29 September 2018
EC2 Meta-data
Methods of retrieving instance meta-data:
- Instance information: http://169.254.169.254/latest/meta-data/
GET http://169.254.169.254/latest/meta-data/ curl http://169.254.169.254/latest/meta-data/
- User information: http://169.254.169.254/latest/user-data
curl http://169.254.169.254/latest/user-data
- Dynamic information: http://169.254.169.254/latest/dynamic/
GET http://169.254.169.254/latest/dynamic/document
References
- CloudInit by Ubuntu
- Instance Metadata and User Data AWS Documentation