Slide 17
Slide 17 text
# get GH Release Tag Ids by polling the Releases Data Source
data "github_release" "actions" {
for_each = {
for id, action in var.actions_config : id => action
}
repository = each.value.repository
owner = each.value.owner
retrieve_by = "tag"
release_tag = each.value.version
}
Building Trust into the Pipeline