From 7f7c213e296fe7b572e80f0ab055d8498425f811 Mon Sep 17 00:00:00 2001 From: Amit Shani Date: Wed, 4 May 2022 14:01:21 +0300 Subject: [PATCH] fix provider source (#8) --- examples/main.tf | 2 +- examples/provider/basic/main.tf | 1 - examples/provider/main.tf | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/examples/main.tf b/examples/main.tf index 7bc1e0c..c1b96bb 100644 --- a/examples/main.tf +++ b/examples/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { atlas = { version = "~> 0.1.0" - source = "github.com/ariga/atlas" + source = "ariga/atlas" } docker = { source = "kreuzwerker/docker" diff --git a/examples/provider/basic/main.tf b/examples/provider/basic/main.tf index 77fd246..e206e98 100644 --- a/examples/provider/basic/main.tf +++ b/examples/provider/basic/main.tf @@ -1,4 +1,3 @@ - provider "atlas" {} data "atlas_schema" "market" { diff --git a/examples/provider/main.tf b/examples/provider/main.tf index 44bbcda..a260a4a 100644 --- a/examples/provider/main.tf +++ b/examples/provider/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { atlas = { version = "~> 0.1.0" - source = "github.com/ariga/atlas" + source = "ariga/atlas" } docker = { source = "kreuzwerker/docker"