Skip to content

Commit

Permalink
Add v1 of the provider
Browse files Browse the repository at this point in the history
  • Loading branch information
Svetlin Ralchev committed Apr 9, 2020
1 parent 580b800 commit 0954012
Show file tree
Hide file tree
Showing 5 changed files with 931 additions and 0 deletions.
15 changes: 15 additions & 0 deletions cmd/terraform-prana-provider/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package main

import (
"github.com/hashicorp/terraform/plugin"
"github.com/hashicorp/terraform/terraform"
"github.com/phogolabs/terraform-prana-provider/prana"
)

func main() {
plugin.Serve(&plugin.ServeOpts{
ProviderFunc: func() terraform.ResourceProvider {
return prana.NewProvider()
},
})
}
43 changes: 43 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
module github.com/phogolabs/terraform-prana-provider

go 1.14

require (
cloud.google.com/go v0.56.0 // indirect
github.com/agext/levenshtein v1.2.3 // indirect
github.com/apex/log v1.1.0
github.com/aws/aws-sdk-go v1.30.6 // indirect
github.com/bmatcuk/doublestar v1.2.2 // indirect
github.com/fatih/color v1.9.0 // indirect
github.com/hashicorp/go-hclog v0.12.2 // indirect
github.com/hashicorp/go-multierror v1.1.0 // indirect
github.com/hashicorp/go-plugin v1.2.2 // indirect
github.com/hashicorp/go-retryablehttp v0.6.5 // indirect
github.com/hashicorp/go-uuid v1.0.2 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/hashicorp/hil v0.0.0-20190212132231-97b3a9cdfa93 // indirect
github.com/hashicorp/terraform v0.12.24
github.com/hashicorp/terraform-svchost v0.0.0-20191119180714-d2e4933b9136 // indirect
github.com/hashicorp/yamux v0.0.0-20190923154419-df201c70410d // indirect
github.com/jmoiron/sqlx v1.2.0
github.com/mattn/go-colorable v0.1.6 // indirect
github.com/mitchellh/cli v1.1.1 // indirect
github.com/mitchellh/go-testing-interface v1.14.0 // indirect
github.com/mitchellh/mapstructure v1.2.2 // indirect
github.com/mitchellh/reflectwalk v1.0.1 // indirect
github.com/oklog/run v1.1.0 // indirect
github.com/phogolabs/parcello v0.8.1
github.com/phogolabs/prana v1.0.0-rc1
github.com/posener/complete v1.2.3 // indirect
github.com/spf13/afero v1.2.2 // indirect
github.com/ulikunitz/xz v0.5.7 // indirect
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
github.com/zclconf/go-cty v1.4.0 // indirect
golang.org/x/crypto v0.0.0-20200406173513-056763e48d71 // indirect
golang.org/x/sys v0.0.0-20200406155108-e3b113bbe6a4 // indirect
golang.org/x/tools v0.0.0-20200407191807-cd5a53e07f8a // indirect
google.golang.org/api v0.21.0 // indirect
google.golang.org/genproto v0.0.0-20200407120235-9eb9bb161a06 // indirect
google.golang.org/grpc v1.28.1 // indirect
)
Loading

0 comments on commit 0954012

Please sign in to comment.