homelab/terraform/modules/twitchminer/variables.tf

15 lines
266 B
Terraform
Raw Normal View History

2024-05-03 20:41:43 -03:00
variable "discord_webhook" {
type = string
description = "Discord webhook"
}
variable "twitch_username" {
2024-10-24 03:03:03 -03:00
type = string
2024-05-03 20:41:43 -03:00
description = "Twitch username"
}
variable "twitch_password" {
2024-10-24 03:03:03 -03:00
type = string
description = "Twitch password"
2024-05-03 20:41:43 -03:00
}