Created on
12-26-2024
06:22 AM
Edited on
01-30-2025
07:47 AM
By
Jean-Philippe_P
Description |
This article describes how to find a previous version of FortiManager and FortiAnalyzer on the AWS marketplace to deploy them. |
Scope |
FortiManager, FortiAnalyzer. |
Solution |
Amazon Machine Image (AMI) needs to be identified to locate the correct/needed image. The AMI can be found using the AWS console or search from GUI.
Note: The steps outlined in this article are also applicable to FortiAnalyzer on AWS.
aws ec2 describe-images --region ca-central-1 --filters "Name=name,Values=FortiManager*7.2.*" --query 'Images[*].{Description:Description,ImageId:ImageId,Architecture:Architecture}' <----- This command will list all available v7.2.x branch images on the AWS marketplace.
Note that region and filter can be changed as needed.
When the command is executed, the following output appears:
ami-0152ae3e040649e4c
It is also possible to find all available FortiManager versions using Description as a filter. For example use: (Description = *FortiManager*).
This will list all available versions of FortiManager on the AWS marketplace.
The required image can be used to launch a new instance from AMI:
|