Skip to content

Commit 0ff0f77

Browse files
authored
Upgrade for Terraform v0.12.0 (#78)
* Upgrade for Terraform v0.12.0 * Update version in README * Update vendor
1 parent 93b8612 commit 0ff0f77

File tree

1,083 files changed

+196036
-30227
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,083 files changed

+196036
-30227
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ VENDOR := cloud.ca
55
URL := https://github.com/cloud-ca/terraform-provider-cloudca
66
LICENSE := MIT
77

8+
# Repository variables
9+
PACKAGE := github.com/cloud-ca/$(NAME)
10+
811
# Build variables
912
BUILD_DIR := bin
1013
COMMIT_HASH ?= $(shell git rev-parse --short HEAD 2>/dev/null)
@@ -87,7 +90,7 @@ build: GOOS := $(shell go env GOOS)
8790
build: GOARCH := $(shell go env GOARCH)
8891
build: clean ## Build binary for current OS/ARCH
8992
@ $(MAKE) --no-print-directory log-$@
90-
@ GOOS=$(GOOS) GOARCH=$(GOARCH) CGO_ENABLED=0 $(GOBUILD) -o ./$(BUILD_DIR)/$(GOOS)-$(GOARCH)/$(NAME)_$(VERSION) && echo "./$(BUILD_DIR)/$(GOOS)-$(GOARCH)/$(NAME)_$(VERSION)"
93+
GOOS=$(GOOS) GOARCH=$(GOARCH) CGO_ENABLED=0 $(GOBUILD) -o ./$(BUILD_DIR)/$(GOOS)-$(GOARCH)/$(NAME)_$(VERSION)
9194

9295
.PHONY: build-all
9396
build-all: SHELL := /bin/bash

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Terraform provider for cloud.ca
77

8-
Tested with Terraform version : 0.11.5
8+
Tested with Terraform version : 0.12.4
99

1010
## Installation
1111

@@ -32,7 +32,7 @@ provider "cloudca" {
3232

3333
## Build from source
3434

35-
Install [Go](https://golang.org/doc/install) (version 1.11 is required)
35+
Install [Go](https://golang.org/doc/install) (version 1.12 is required)
3636

3737
Download the provider source:
3838

go.mod

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,6 @@
11
module github.com/cloud-ca/terraform-provider-cloudca
22

33
require (
4-
github.com/apparentlymart/go-cidr v1.0.0 // indirect
5-
github.com/blang/semver v3.5.1+incompatible // indirect
64
github.com/cloud-ca/go-cloudca v1.4.0
7-
github.com/hashicorp/go-getter v1.0.3 // indirect
8-
github.com/hashicorp/go-hclog v0.0.0-20190109152822-4783caec6f2e // indirect
9-
github.com/hashicorp/go-plugin v0.0.0-20190129155509-362c99b11937 // indirect
10-
github.com/hashicorp/go-uuid v1.0.1 // indirect
11-
github.com/hashicorp/hcl v1.0.0 // indirect
12-
github.com/hashicorp/hcl2 v0.0.0-20190130225218-89dbc5eb3d9e // indirect
13-
github.com/hashicorp/hil v0.0.0-20190129155652-59d7c1fee952 // indirect
14-
github.com/hashicorp/terraform v0.11.11
15-
github.com/mitchellh/cli v1.0.0 // indirect
16-
github.com/mitchellh/copystructure v1.0.0 // indirect
17-
github.com/mitchellh/go-homedir v1.1.0 // indirect
18-
github.com/mitchellh/hashstructure v1.0.0 // indirect
19-
github.com/zclconf/go-cty v0.0.0-20190201220620-4ca19710f056 // indirect
20-
golang.org/x/crypto v0.0.0-20190211182817-74369b46fc67 // indirect
21-
golang.org/x/net v0.0.0-20190206173232-65e2d4e15006 // indirect
5+
github.com/hashicorp/terraform v0.12.4
226
)

go.sum

Lines changed: 293 additions & 37 deletions
Large diffs are not rendered by default.

vendor/cloud.google.com/go/AUTHORS

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/cloud.google.com/go/CONTRIBUTORS

Lines changed: 40 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/cloud.google.com/go/LICENSE

Lines changed: 202 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)