Find region from within an EC2 instance

前端 未结 28 1462
谎友^
谎友^ 2020-12-02 06:24

Is there a way to look up the region of an instance from within the instance?

I\'m looking for something similar to the method of finding the instance id.

28条回答
  •  庸人自扰
    2020-12-02 06:53

    ec2-metadata --availability-zone | sed 's/.$//'
    

    For debian based systems, the command is without dash.

    ec2metadata --availability-zone | sed 's/.$//'
    

提交回复
热议问题