diff --git a/examples/simple-repo-with-team-and-team-member/main.tf b/examples/simple-repo-with-team-and-team-member/main.tf index 2ae3220..2f9cd52 100644 --- a/examples/simple-repo-with-team-and-team-member/main.tf +++ b/examples/simple-repo-with-team-and-team-member/main.tf @@ -7,7 +7,8 @@ provider "github" {} # Example Repo with all teams ############################# module "test_repo" { - source = "/Users/marvelorange/GIT/OCS/terraform-github-repository" + source = "MarvelOrange/repository/github" + version = "0.1.0" repo_name = "testing-repo" repo_description = "Hello testing repo" diff --git a/examples/simple-repo-with-teams/main.tf b/examples/simple-repo-with-teams/main.tf index c61d345..9cfd9f5 100644 --- a/examples/simple-repo-with-teams/main.tf +++ b/examples/simple-repo-with-teams/main.tf @@ -7,7 +7,8 @@ provider "github" {} # Example Repo with all teams ############################# module "test_repo" { - source = "../../" + source = "MarvelOrange/repository/github" + version = "0.1.0" repo_name = "testing-repo" repo_description = "Hello testing repo"