Skip to content

Commit 0a7a92e

Browse files
committed
chore: add support for local debugging
1 parent 774429d commit 0a7a92e

File tree

2 files changed

+21
-5
lines changed

2 files changed

+21
-5
lines changed

.gitignore

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
*.dll
22
*.exe
3+
*.env
34
.DS_Store
45
example.tf
5-
terraform.tfplan
6-
terraform.tfstate
76
bin/
87
dist/
98
modules-dev/
@@ -14,8 +13,6 @@ website/build
1413
website/node_modules
1514
.vagrant/
1615
*.backup
17-
./*.tfstate
18-
.terraform/
1916
*.log
2017
*.bak
2118
*~
@@ -29,6 +26,15 @@ website/vendor
2926
vendor/
3027
.vscode/
3128

29+
# Terraform
30+
terraform.tfplan
31+
terraform.tfstate
32+
.terraformrc
33+
./*.tfstate
34+
.terraform/
35+
36+
terraform-provider-bitbucket
37+
3238
# Test exclusions
3339
!command/test-fixtures/**/*.tfstate
3440
!command/test-fixtures/**/.terraform/

main.go

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
package main
22

33
import (
4+
"flag"
5+
46
"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"
57
"github.com/terraform-providers/terraform-provider-bitbucket/bitbucket"
68
)
79

810
func main() {
11+
var debug bool
12+
13+
flag.BoolVar(&debug, "debug", false, "set to true to run the provider with support for debuggers like delve")
14+
flag.Parse()
15+
916
plugin.Serve(&plugin.ServeOpts{
10-
ProviderFunc: bitbucket.Provider})
17+
ProviderFunc: bitbucket.Provider,
18+
ProviderAddr: "DrFaust92/bitbucket",
19+
Debug: debug,
20+
})
1121
}

0 commit comments

Comments
 (0)