blob: ef020891a200999903fe8927f23b28f88cc9c7f7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
terraform {
required_version = ">= 1.0"
required_providers {
github = {
source = "integrations/github"
version = "~> 5.0"
}
}
}
provider "github" {
token = var.github_token
owner = "kliwniloc"
}
|