Cannot find AWS ami NVIDIA Omniverse GPU-Optimized AMI

@Sheikh_Dawood
By running terraform or even through the AWS CLI with the command:

aws ec2 describe-images --owners aws-marketplace --filters "Name=name,Values=NVIDIA Omniverse GPU-Optimized AMI" --query 'Images[*].[ImageId]' --region us-east-1 --output json

It returns null, but the image is on the marketplace. The Image name is NVIDIA Omniverse GPU-Optimized AMI.

So, how can I find the AMI id with the AWS CLI ?

Hi, try this command:

aws ec2 describe-images --owners aws-marketplace --filters "Name=name,Values=OV AMI 1.3.6*" --query 'Images[*].[ImageId]' --region us-east-1 --output json

Thanks, it works. I would never ever have found this hahaha.
I am having several other issues when using terraform and also when trying to use relative paths in OIGE.

Bad news, it dont work on Terraform for some reason It cant find the OV AMI 1.3.6*

My code for reference:

Found a solution:

data "aws_ami_ids" "nvidia_omniverse_ami" {
  owners = ["aws-marketplace"]

  filter {
    name   = "name"
    values = ["OV AMI 1.3.6*"]
  }
}

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.