13 lines
176 B
HCL
13 lines
176 B
HCL
terraform {
|
|
required_providers {
|
|
github = {
|
|
source = "integrations/github"
|
|
}
|
|
}
|
|
}
|
|
|
|
# Configure the GitHub Provider
|
|
provider "github" {
|
|
token = var.gh_token
|
|
}
|