2022-11-18 16:08:50 -05:00

13 lines
201 B
HCL

variable "github_token" {
sensitive = true
}
provider "github" {
token = var.github_token
}
resource "github_repository" "neo_todo_app" {
name = "neo_todo_app"
visibility = "private"
}