close
原來版本太舊的 boto 會有不支援 region 的問題
但是卻沒有看到什麼錯誤...
"us-east-2" 就是這次的罪魁禍首
boto list region
import boto.s3
s3_rs = boto.s3.regions()
import boto.ec2
ec2_rs = boto.ec2.regions()
boto3 list region
from boto3.session import Session
s = Session()
regions = s.get_available_regions('s3')
http://boto.cloudhackers.com/en/2.0/ec2_tut.html
https://stackoverflow.com/questions/38451032/how-to-list-available-regions-with-boto3-python
全站熱搜
留言列表