支持文件的 Amazon EC2 Python API
命令行工具 ec2-run-instances 采用 -f 参数在运行时将文件传递给实例。 EC2 是否有任何 Python API 可以执行相同的操作?
我正在寻找定制一个 Wowza 媒体服务器,它需要在启动新映像时传递一个文件。
The command line tool ec2-run-instances takes a -f parameter to pass a file to the instance at run time. Are there any Python APIs for EC2 that do the equivalent?
I'm looking to customize a Wowza Media Server, which requires passing in a file when booting up a new image.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 boto。然后,您可以编写一个小脚本来首先打开文件并读取其内容并将其作为用户数据传递。
或者尝试 http://github.com/fschulze/mr.awsome
You can either use boto. Then you can possibly code a small script to open a file first and read it's contents and pass it as user-data.
Or try http://github.com/fschulze/mr.awsome