-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from philips-software/develop
Upgrade to Terraform v0.12.1
- Loading branch information
Showing
5 changed files
with
300 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.11.0-alpine3.8 as builder | ||
FROM golang:1.12.5-alpine3.9 as builder | ||
LABEL maintainer="[email protected]" | ||
RUN apk add --no-cache git openssh gcc musl-dev | ||
WORKDIR /terraform-provider-hsdp | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,8 @@ | ||
module github.com/philips-software/terraform-provider-hsdp | ||
|
||
require ( | ||
cloud.google.com/go v0.32.0 // indirect | ||
github.com/apparentlymart/go-cidr v1.0.0 // indirect | ||
github.com/armon/go-radix v1.0.0 // indirect | ||
github.com/aws/aws-sdk-go v1.15.68 // indirect | ||
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect | ||
github.com/blang/semver v3.5.1+incompatible // indirect | ||
github.com/go-ini/ini v1.39.0 // indirect | ||
github.com/golang/lint v0.0.0-20181026193005-c67002cb31c3 // indirect | ||
github.com/google/go-querystring v1.0.0 // indirect | ||
github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.0 // indirect | ||
github.com/hashicorp/go-getter v0.0.0-20180809191950-4bda8fa99001 // indirect | ||
github.com/hashicorp/go-hclog v0.0.0-20181001195459-61d530d6c27f // indirect | ||
github.com/hashicorp/go-plugin v0.0.0-20181030172320-54b6ff97d818 // indirect | ||
github.com/hashicorp/go-safetemp v1.0.0 // indirect | ||
github.com/hashicorp/go-uuid v1.0.0 // indirect | ||
github.com/hashicorp/go-version v1.0.0 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/hashicorp/hcl2 v0.0.0-20181104041703-917fbe66e76d // indirect | ||
github.com/hashicorp/hil v0.0.0-20170627220502-fa9f258a9250 // indirect | ||
github.com/hashicorp/logutils v1.0.0 // indirect | ||
github.com/hashicorp/terraform v0.11.10 | ||
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d // indirect | ||
github.com/jeffail/gabs v1.2.0 // indirect | ||
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af // indirect | ||
github.com/jtolds/gls v4.2.1+incompatible // indirect | ||
github.com/kr/pty v1.1.3 // indirect | ||
github.com/hashicorp/terraform v0.12.1 | ||
github.com/leodido/go-urn v1.1.0 // indirect | ||
github.com/mattn/go-isatty v0.0.4 // indirect | ||
github.com/mitchellh/cli v1.0.0 // indirect | ||
github.com/mitchellh/copystructure v1.0.0 // indirect | ||
github.com/mitchellh/go-homedir v1.0.0 // indirect | ||
github.com/mitchellh/go-testing-interface v1.0.0 // indirect | ||
github.com/mitchellh/go-wordwrap v1.0.0 // indirect | ||
github.com/mitchellh/hashstructure v1.0.0 // indirect | ||
github.com/mitchellh/mapstructure v1.1.2 // indirect | ||
github.com/philips-software/go-hsdp-api v0.0.0-20190401141214-b029dacc11f7 | ||
github.com/posener/complete v1.2.1 // indirect | ||
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d // indirect | ||
github.com/smartystreets/goconvey v0.0.0-20180222194500-ef6db91d284a // indirect | ||
github.com/spf13/pflag v1.0.3 // indirect | ||
github.com/stretchr/objx v0.1.1 // indirect | ||
github.com/stretchr/testify v1.3.0 // indirect | ||
github.com/ulikunitz/xz v0.5.5 // indirect | ||
github.com/vmihailenco/msgpack v4.0.1+incompatible // indirect | ||
github.com/zclconf/go-cty v0.0.0-20181017232614-01c5aba823a6 // indirect | ||
golang.org/x/crypto v0.0.0-20181030102418-4d3f4d9ffa16 // indirect | ||
golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3 // indirect | ||
golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc // indirect | ||
golang.org/x/oauth2 v0.0.0-20181102170140-232e45548389 // indirect | ||
golang.org/x/sys v0.0.0-20181031143558-9b800f95dbbc // indirect | ||
golang.org/x/tools v0.0.0-20181102223251-96e9e165b75e // indirect | ||
google.golang.org/appengine v1.3.0 // indirect | ||
google.golang.org/genproto v0.0.0-20181101192439-c830210a61df // indirect | ||
google.golang.org/grpc v1.16.0 // indirect | ||
github.com/philips-software/go-hsdp-api v0.2.0 | ||
gopkg.in/go-playground/validator.v9 v9.28.0 // indirect | ||
honnef.co/go/tools v0.0.0-20180920025451-e3ad64cb4ed3 // indirect | ||
) |
Oops, something went wrong.