Skip to content
This repository was archived by the owner on Dec 9, 2020. It is now read-only.
Open
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .go-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.11.5
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,9 @@ install:
# packages that live there.
# See: https://github.com/golang/go/issues/12933
- bash scripts/gogetcookie.sh
- go get github.com/kardianos/govendor

script:
- make test
- make vendor-status
- make vet
- make website-test

Expand All @@ -27,3 +25,5 @@ matrix:
fast_finish: true
allow_failures:
- go: tip
env:
- GOFLAGS=-mod=vendor GO111MODULE=on
4 changes: 1 addition & 3 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ fmtcheck:
errcheck:
@sh -c "'$(CURDIR)/scripts/errcheck.sh'"

vendor-status:
@govendor status

test-compile:
@if [ "$(TEST)" = "./..." ]; then \
Expand All @@ -59,5 +57,5 @@ ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO)))
endif
@$(MAKE) -C $(GOPATH)/src/$(WEBSITE_REPO) website-provider-test PROVIDER_PATH=$(shell pwd) PROVIDER_NAME=$(PKG_NAME)

.PHONY: build test testacc vet fmt fmtcheck errcheck vendor-status test-compile website website-test
.PHONY: build test testacc vet fmt fmtcheck errcheck test-compile website website-test

12 changes: 12 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
module github.com/terraform-providers/terraform-provider-ultradns

require (
github.com/Ensighten/udnssdk v1.3.2
github.com/blang/semver v3.5.1+incompatible // indirect
github.com/fatih/structs v1.0.0
github.com/hashicorp/terraform v0.11.12-beta1.0.20190227065421-fc531f54a878
github.com/mitchellh/mapstructure v0.0.0-20170307201123-53818660ed49
github.com/smartystreets/goconvey v0.0.0-20190222223459-a17d461953aa // indirect
golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6 // indirect
google.golang.org/appengine v1.4.0 // indirect
)
283 changes: 283 additions & 0 deletions go.sum

Large diffs are not rendered by default.

5 changes: 0 additions & 5 deletions ultradns/resource_ultradns_probe_http.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,6 @@ func resourceUltradnsProbeHTTP() *schema.Resource {
Optional: true,
Elem: schemaHTTPProbe(),
},
// Computed
"id": {
Type: schema.TypeString,
Computed: true,
},
},
}
}
Expand Down
5 changes: 0 additions & 5 deletions ultradns/resource_ultradns_probe_ping.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,6 @@ func resourceUltradnsProbePing() *schema.Resource {
Optional: true,
Elem: schemaPingProbe(),
},
// Computed
"id": {
Type: schema.TypeString,
Computed: true,
},
},
}
}
Expand Down
4 changes: 4 additions & 0 deletions vendor/github.com/Ensighten/udnssdk/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions vendor/github.com/agext/levenshtein/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

70 changes: 70 additions & 0 deletions vendor/github.com/agext/levenshtein/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 36 additions & 0 deletions vendor/github.com/agext/levenshtein/DCO

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

201 changes: 201 additions & 0 deletions vendor/github.com/agext/levenshtein/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions vendor/github.com/agext/levenshtein/MAINTAINERS

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions vendor/github.com/agext/levenshtein/NOTICE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading