github.com/cockroachdb/cockroach@v20.2.0-alpha.1+incompatible/pkg/cmd/roachprod/vm/aws/terraform/aws-region/ami.tf (about)

     1  # Search for AMI. This will fail if more than one matches "image_name".
     2  data "aws_ami" "node_ami" {
     3    filter {
     4      name   = "name"
     5      values = ["${var.image_name}"]
     6    }
     7  }