18 lines
341 B
HCL
18 lines
341 B
HCL
variable "github_token" {
|
|
description = "GitHub token"
|
|
sensitive = true
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable "github_org" {
|
|
description = "GitHub organization"
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable "github_repository" {
|
|
description = "GitHub repository"
|
|
type = string
|
|
default = ""
|
|
}
|