Skip to content

Instantly share code, notes, and snippets.

@Voronenko
Created January 11, 2021 10:19
Show Gist options
  • Save Voronenko/cf21b752ac5f5a2fb59cdd7c63063017 to your computer and use it in GitHub Desktop.
Save Voronenko/cf21b752ac5f5a2fb59cdd7c63063017 to your computer and use it in GitHub Desktop.
Ami lookups
data "aws_ami" "instance_ami" {
most_recent = true
owners = [
var.ubuntu_account_number]
filter {
name = "name"
values = ["ubuntu/images/hvm-ssd/ubuntu-bionic-18.04-amd64-server-*"]
}
}
variable "ubuntu_account_number" {
default = "099720109477"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment