Hi Image names change often so that information is not something that would be documented on the Packer docs. Have your tried using the AWS CLI to list available 2019 Windows Server images?
> aws ec2 describe-images --filters "Name=virtualization-type,Values=hvm" > --filters "Name=name,Values=*Windows_Server-2019*English*" | jq > '.Images[].Name' Note I am using the jq command to only show the names of the available AMIs. There appears to be a Windows_Server-2019-English-Full-Basee, but you should confirm that it is the AMI you are looking for and that it is available within your selected region using the AWS CLI command. On Wed, Dec 4, 2019, at 9:51 AM, Sumit Jaiswal wrote: > Hi > > Please let know what should be name for windows 2019 AMI, this is for packing > 2019 AMI. > > Didn't find any thing on - > https://www.packer.io/intro/getting-started/build-image.html - web page. > > "*Windows_Server-2012-R2*English-64Bit-Base*" > "*Windows_Server-2016-English-Full-Base*" > "*Windows_Server-2008-SP2*English-64Bit-Base*", > > > -- > This mailing list is governed under the HashiCorp Community Guidelines - > https://www.hashicorp.com/community-guidelines.html. Behavior in violation of > those guidelines may result in your removal from this mailing list. > > GitHub Issues: https://github.com/mitchellh/packer/issues > IRC: #packer-tool on Freenode > --- > You received this message because you are subscribed to the Google Groups > "Packer" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/packer-tool/0ee2582c-e2ee-4b2b-83b9-2eb677338ac0%40googlegroups.com > > <https://groups.google.com/d/msgid/packer-tool/0ee2582c-e2ee-4b2b-83b9-2eb677338ac0%40googlegroups.com?utm_medium=email&utm_source=footer>. -- This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list. GitHub Issues: https://github.com/mitchellh/packer/issues IRC: #packer-tool on Freenode --- You received this message because you are subscribed to the Google Groups "Packer" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/packer-tool/e48063aa-8463-4398-80d7-a1dcffdb5544%40www.fastmail.com.
