terraform data source: aws ami

From wikieduonline
Revision as of 04:12, 28 February 2022 by Welcome (talk | contribs) (→‎See also)
Jump to navigation Jump to search


data "aws_ami" "amzlinux2" {
  most_recent = true
  owners      = ["amazon"]
 
  filter {
    name   = "name"
    values = ["amzn2-ami-hvm-*-x86_64-ebs"]
  }
}

See also

Advertising: