aboutsummaryrefslogtreecommitdiff
path: root/examples/provider/provider.tf
blob: b56214062631e99e75c393663685d46b37f6a097 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
terraform {
  required_providers {
    eventline = {
      source = "adyxax/eventline"
    }
  }
}

provider "eventline" {
  api_key  = var.eventline_api_key
  endpoint = "http://localhost:8085/"
}