diff options
Diffstat (limited to 'examples/provider/provider.tf')
-rw-r--r-- | examples/provider/provider.tf | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index 699cdb4..b562140 100644 --- a/examples/provider/provider.tf +++ b/examples/provider/provider.tf @@ -1,4 +1,12 @@ +terraform { + required_providers { + eventline = { + source = "adyxax/eventline" + } + } +} + provider "eventline" { - api_key = "12345678-9abc-def0-1234-56789abcdef0" + api_key = var.eventline_api_key endpoint = "http://localhost:8085/" } |