homelab/terraform-home/modules/twitchminer/data.tf

8 lines
221 B
Terraform
Raw Normal View History

2024-05-03 20:41:43 -03:00
data "template_file" "runpy" {
template = file("${path.module}/conf/run.py")
vars = {
discord_webhook = var.discord_webhook
twitch_username = var.twitch_username
twitch_password = var.twitch_password
}
}