How to find the Amazon Machine Image ID for the VM-Series Panorama
13405
Created On 01/13/21 00:57 AM - Last Modified 07/21/23 00:09 AM
Objective
How to find the AMI ID for the VM-Series Panorama that matches the PAN-OS version, license type and AWS region in which you want to launch the VM-Series Panorama.
Environment
- Amazon AWS.
- Panorama VM
- Any PAN-OS.
Procedure
The following command needs to be run on AWS CLI
Command:
aws ec2 describe-images --filters "Name=product-code,Values=<license-type-value>" Name=name,Values=Panorama-AWS*<PAN-OS-version>* --region <region> --output json
Examples:-
To view complete code series:
aws ec2 describe-images --filters "Name=product-code,Values=eclz7j04xxxlf8ont8ta3n17o" "Name=name,Values=Panorama-AWS*9.0*" --region us-west-1 --output json
For specific version:
aws ec2 describe-images --filters "Name=product-code,Values=eclz7j04xxxlf8ont8ta3n17o" "Name=name,Values=Panorama-AWS*9.0.5*" --region us-west-1 --output json
Additional Information
Refer to the AWS documentation for instructions on installing the CLI.