forked from F5Networks/terraform-provider-bigip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
16 lines (13 loc) · 682 Bytes
/
go.mod
File metadata and controls
16 lines (13 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Original work from https://github.com/DealerDotCom/terraform-provider-bigip
//Modifications Copyright 2019 F5 Networks Inc.
//This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
//If a copy of the MPL was not distributed with this file,You can obtain one at https://mozilla.org/MPL/2.0/.
module github.com/terraform-providers/terraform-provider-bigip
require (
github.com/f5devcentral/go-bigip v0.0.0-20191210104813-c271f8ad800c
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/hashicorp/hil v0.0.0-20190212132231-97b3a9cdfa93 // indirect
github.com/hashicorp/terraform-plugin-sdk v1.1.0
github.com/stretchr/testify v1.3.0
)
go 1.13