Skip to content

Commit

Permalink
Add KeyVault reference feature for VariableGroups Resource (microsoft…
Browse files Browse the repository at this point in the history
…#282)

* Add required env vars and flags for vscode testing

* Add key vault var group test

* Add key vault variable groups

* Add conflicts with

* Update go-sdk version to v1.0.0-b3

* Fix build errors

* Fix unit test

* Split acceptance and unit tests

* Fix linter issues

* Remove comment

* Fixing issue with HCL used in acceptance tests

* Add make install

* Remove incorrect variable tests

* Fix tests

* Fix integration test

* Stop using decode

* Remove redudant conflicts

* inline declaration

* Refactor

* Refactor into method

* Refactor error messages

* Update docs

* Refactor variable groups

* Refactor tests

Co-authored-by: Nick Iodice <niiodice@microsoft.com>
  • Loading branch information
EliiseS and Nick Iodice authored Jun 1, 2020
1 parent 8cf6e83 commit fcffc53
Show file tree
Hide file tree
Showing 24 changed files with 1,954 additions and 572 deletions.
4 changes: 3 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"-v",
"-tags=all"
],
"go.testTimeout": "90s",
"go.testEnvVars": {
"TF_ACC": "1"
},
Expand All @@ -58,6 +59,7 @@
"ms-vsliveshare.vsliveshare",
"streetsidesoftware.code-spell-checker",
"eamodio.gitlens",
"yzhang.markdown-all-in-one"
"yzhang.markdown-all-in-one",
"davidanson.vscode-markdownlint"
]
}
5 changes: 5 additions & 0 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ test-compile:
fi
go test -c $(TEST) $(TESTARGS)

install:
./scripts/build.sh --SkipTests --Install

check-vendor-vs-mod: ## Check that go modules and vendored code are on par
@echo "==> Checking that go modules and vendored dependencies match..."
go mod vendor
Expand All @@ -71,6 +74,8 @@ vet:
exit 1; \
fi

ci: check-vendor-vs-mod lint test

website:
ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO)))
echo "$(WEBSITE_REPO) not found in your GOPATH (necessary for layouts and assets), get-ting..."
Expand Down
File renamed without changes.
Loading

0 comments on commit fcffc53

Please sign in to comment.