From 91172351d74c9f15cbcf6c4a44156707fd1a9f5b Mon Sep 17 00:00:00 2001 From: Pim Kunis Date: Wed, 19 Apr 2023 00:15:45 +0800 Subject: [PATCH] update provider example (#5) Needed to change this to make the provider work Reviewed-on: https://gitea.com/gitea/terraform-provider-gitea/pulls/5 Co-authored-by: Pim Kunis Co-committed-by: Pim Kunis --- examples/provider/provider.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index 655382c..097c67f 100644 --- a/examples/provider/provider.tf +++ b/examples/provider/provider.tf @@ -1,8 +1,8 @@ terraform { required_providers { gitea = { - source = "gitea/gitea" - version = "0.6.1" + source = "go-gitea/gitea" + version = "0.1.0" } } } @@ -21,4 +21,4 @@ provider "gitea" { # If you are running a gitea instance with self signed TLS certificates # and you want to disable certificate validation you can deactivate it with this flag insecure = false -} \ No newline at end of file +}