Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement rpaas_file #4

Merged
merged 4 commits into from
May 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
go-version: 1.16

- name: Test
run: go test -v ./...
Expand Down
15 changes: 3 additions & 12 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,22 +1,15 @@
module github.com/tsuru/terraform-provider-rpaas

go 1.15
go 1.16

require (
cloud.google.com/go/storage v1.16.0 // indirect
github.com/agext/levenshtein v1.2.3 // indirect
github.com/ajg/form v1.5.1
github.com/aws/aws-sdk-go v1.40.24 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320
github.com/hashicorp/go-getter v1.5.7 // indirect
github.com/hashicorp/go-plugin v1.4.2 // indirect
github.com/hashicorp/hcl/v2 v2.10.1 //indirect
github.com/hashicorp/terraform-plugin-go v0.3.1 // indirect
github.com/hashicorp/terraform-plugin-sdk/v2 v2.7.0
github.com/hashicorp/terraform-plugin-sdk/v2 v2.10.0
github.com/hashicorp/yamux v0.0.0-20210707203944-259a57b3608c // indirect
github.com/labstack/echo/v4 v4.6.1
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
github.com/oklog/run v1.1.0 // indirect
github.com/sajari/fuzzy v1.0.0 // indirect
Expand All @@ -25,10 +18,8 @@ require (
github.com/tsuru/commandmocker v0.0.0-20160909010208-e1d28f4f616a // indirect
github.com/tsuru/config v0.0.0-20200717192526-2a9a0efe5f28 // indirect
github.com/tsuru/gnuflag v0.0.0-20151217162021-86b8c1b864aa // indirect
github.com/tsuru/rpaas-operator v0.27.5
github.com/tsuru/rpaas-operator v0.27.6
github.com/tsuru/tablecli v0.0.0-20180215113938-82de88f75181 // indirect
github.com/tsuru/tsuru v0.0.0-20180820205921-0e7f7f02eac5
github.com/ulikunitz/xz v0.5.10 // indirect
github.com/zclconf/go-cty v1.9.1 // indirect
istio.io/pkg v0.0.0-20210322140956-5892a3b28d3e
)
Loading