Not able to fine packer built image in the console

白昼怎懂夜的黑 提交于 2020-06-16 18:58:20

问题


I am new to packer and i am trying my hands on it.

{

  "builders": [
    {
      "type": "amazon-ebs",
      "profile" : "sumanthdev",
      "region": "us-east-1",
      "source_ami_filter": {
        "filters": {
          "virtualization-type": "hvm",
          "name": "ubuntu/images/*ubuntu-xenial-16.04-amd64-server-*",
          "root-device-type": "ebs"
        },
        "owners": ["099720109477"],
        "most_recent": true
      },
      "instance_type": "t2.micro",
      "ssh_username": "ubuntu",
      "ami_name": "packer-example {{timestamp}}"
    }
  ]

}

which gave me an out put

==> Builds finished. The artifacts of successful builds are: --> amazon-ebs: AMIs were created: us-east-1: ami-0b9dfb74858d0f690

when i log into to console i am not able to see the ami in my console.

Note : i am using my profile "sumanthdev" which is set up in my aws.cerdentials file

What could be the reason for this ?

来源:https://stackoverflow.com/questions/62321422/not-able-to-fine-packer-built-image-in-the-console

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!