Files
tf-infra/github/provider.tf
2026-03-14 20:56:04 +01:00

13 lines
176 B
HCL

terraform {
required_providers {
github = {
source = "integrations/github"
}
}
}
# Configure the GitHub Provider
provider "github" {
token = var.gh_token
}