Skip to content

Commit a7127e8

Browse files
authored
Merge pull request #1 from philips-software/develop
Upgrade to Terraform v0.12.1
2 parents f48dba2 + ce25ac0 commit a7127e8

File tree

5 files changed

+300
-179
lines changed

5 files changed

+300
-179
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## v0.2.0
8+
9+
- Upgrade to Terraform 0.12.x
10+
711
## v0.1.0
812

913
- Initial implementation

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.11.0-alpine3.8 as builder
1+
FROM golang:1.12.5-alpine3.9 as builder
22
LABEL maintainer="andy.lo-a-foe@philips.com"
33
RUN apk add --no-cache git openssh gcc musl-dev
44
WORKDIR /terraform-provider-hsdp

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ A Dockerfile is provided. Example usage of the image:
3535

3636
```sh
3737
$ docker build -t terraform-provider-hsdp .
38-
$ docker run --rm -v /Location/With/Terraform/Files:/terraform -w /terraform -it terraform-provider-hsdp check
38+
$ docker run --rm -v /Location/With/Terraform/Files:/terraform -w /terraform -it terraform-provider-hsdp init
3939
```
4040

4141
Automatic builds can be found on [Docker hub](https://hub.docker.com/r/philipssoftware/terraform-provider-hsdp/).

go.mod

Lines changed: 2 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,8 @@
11
module github.com/philips-software/terraform-provider-hsdp
22

33
require (
4-
cloud.google.com/go v0.32.0 // indirect
5-
github.com/apparentlymart/go-cidr v1.0.0 // indirect
6-
github.com/armon/go-radix v1.0.0 // indirect
7-
github.com/aws/aws-sdk-go v1.15.68 // indirect
8-
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
9-
github.com/blang/semver v3.5.1+incompatible // indirect
10-
github.com/go-ini/ini v1.39.0 // indirect
11-
github.com/golang/lint v0.0.0-20181026193005-c67002cb31c3 // indirect
12-
github.com/google/go-querystring v1.0.0 // indirect
13-
github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e // indirect
14-
github.com/hashicorp/go-cleanhttp v0.5.0 // indirect
15-
github.com/hashicorp/go-getter v0.0.0-20180809191950-4bda8fa99001 // indirect
16-
github.com/hashicorp/go-hclog v0.0.0-20181001195459-61d530d6c27f // indirect
17-
github.com/hashicorp/go-plugin v0.0.0-20181030172320-54b6ff97d818 // indirect
18-
github.com/hashicorp/go-safetemp v1.0.0 // indirect
19-
github.com/hashicorp/go-uuid v1.0.0 // indirect
20-
github.com/hashicorp/go-version v1.0.0 // indirect
21-
github.com/hashicorp/hcl v1.0.0 // indirect
22-
github.com/hashicorp/hcl2 v0.0.0-20181104041703-917fbe66e76d // indirect
23-
github.com/hashicorp/hil v0.0.0-20170627220502-fa9f258a9250 // indirect
24-
github.com/hashicorp/logutils v1.0.0 // indirect
25-
github.com/hashicorp/terraform v0.11.10
26-
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d // indirect
27-
github.com/jeffail/gabs v1.2.0 // indirect
28-
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af // indirect
29-
github.com/jtolds/gls v4.2.1+incompatible // indirect
30-
github.com/kr/pty v1.1.3 // indirect
4+
github.com/hashicorp/terraform v0.12.1
315
github.com/leodido/go-urn v1.1.0 // indirect
32-
github.com/mattn/go-isatty v0.0.4 // indirect
33-
github.com/mitchellh/cli v1.0.0 // indirect
34-
github.com/mitchellh/copystructure v1.0.0 // indirect
35-
github.com/mitchellh/go-homedir v1.0.0 // indirect
36-
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
37-
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
38-
github.com/mitchellh/hashstructure v1.0.0 // indirect
39-
github.com/mitchellh/mapstructure v1.1.2 // indirect
40-
github.com/philips-software/go-hsdp-api v0.0.0-20190401141214-b029dacc11f7
41-
github.com/posener/complete v1.2.1 // indirect
42-
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d // indirect
43-
github.com/smartystreets/goconvey v0.0.0-20180222194500-ef6db91d284a // indirect
44-
github.com/spf13/pflag v1.0.3 // indirect
45-
github.com/stretchr/objx v0.1.1 // indirect
46-
github.com/stretchr/testify v1.3.0 // indirect
47-
github.com/ulikunitz/xz v0.5.5 // indirect
48-
github.com/vmihailenco/msgpack v4.0.1+incompatible // indirect
49-
github.com/zclconf/go-cty v0.0.0-20181017232614-01c5aba823a6 // indirect
50-
golang.org/x/crypto v0.0.0-20181030102418-4d3f4d9ffa16 // indirect
51-
golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3 // indirect
52-
golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc // indirect
53-
golang.org/x/oauth2 v0.0.0-20181102170140-232e45548389 // indirect
54-
golang.org/x/sys v0.0.0-20181031143558-9b800f95dbbc // indirect
55-
golang.org/x/tools v0.0.0-20181102223251-96e9e165b75e // indirect
56-
google.golang.org/appengine v1.3.0 // indirect
57-
google.golang.org/genproto v0.0.0-20181101192439-c830210a61df // indirect
58-
google.golang.org/grpc v1.16.0 // indirect
6+
github.com/philips-software/go-hsdp-api v0.2.0
597
gopkg.in/go-playground/validator.v9 v9.28.0 // indirect
60-
honnef.co/go/tools v0.0.0-20180920025451-e3ad64cb4ed3 // indirect
618
)

0 commit comments

Comments
 (0)