tf-cf-aws-3tier-dev/terraform/data.tf

23 lines
363 B
HCL

# Attempt to programmatically fetch AMI ARNs
# data "aws_ami" "compute_ami" {
# most_recent = true
# filter {
# name = "name"
# values = ["amazon linux"]
# }
# filter {
# name = "virtualization-type"
# values = ["hvm"]
# }
# filter {
# name = "architecture"
# values = ["x86_64"]
# }
# }
# data "" "ec2_arns" {
# }