Files
catherine-league/infra/terraform/modules/catherine-fc/main/data.tf

13 lines
225 B
HCL

data "aws_caller_identity" "self" { }
data "aws_ami" "catherine_fc_ami" {
most_recent = true
filter {
name = "name"
values = [ "catherine-fc" ]
}
owners = [ "353699021357" ]
}