Skip to main content
main.tf201 B
View on GitHub
# GitHub provider uses GITHUB_TOKEN from environment
# Export it with: eval $(atmos env)
provider "github" {}

# Fetch repository data
data "github_repository" "atmos" {
full_name = var.repository
}

Related Documentation