Skip to content

Commit

Permalink
fix: custom user token changes replace resource (#1379)
Browse files Browse the repository at this point in the history
Signed-off-by: matttrach <[email protected]>
  • Loading branch information
matttrach authored Aug 2, 2024
1 parent 9e26756 commit 69b8a96
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ package-rancher:

test: fmtcheck
@echo "==> Running testing..."
go test $(TEST) || exit 1
go test -v $(TEST) || exit 1
echo $(TEST) | \
xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4
xargs -t -n4 go test -v $(TESTARGS) -timeout=30s -parallel=4

testacc:
@sh -c "'$(CURDIR)/scripts/gotestacc.sh'"
Expand Down Expand Up @@ -69,6 +69,6 @@ test-compile:
echo " make test-compile TEST=./$(PKG_NAME)"; \
exit 1; \
fi
go test -c $(TEST) $(TESTARGS)
go test -v -c $(TEST) $(TESTARGS)

.PHONY: build test testacc vet fmt fmtcheck errcheck vendor-status test-compile bin vendor
1 change: 1 addition & 0 deletions rancher2/schema_custom_user_token.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ func customUserTokenFields() map[string]*schema.Schema {
Type: schema.TypeString,
Required: true,
Sensitive: true,
ForceNew: true,
Description: "The user password",
},
"username": {
Expand Down

0 comments on commit 69b8a96

Please sign in to comment.