Skip to content

Commit

Permalink
resource/davinci_connection: Ability to manage defaultUserPool co…
Browse files Browse the repository at this point in the history
…nnector instance (#279)

* Fixed inability to import the `defaultUserPool` User Pool connector to Terraform state

* Added ability to configure complex properties as JSON format

* changelog

* updates for json connection properties

* additional tests

* docs generation

* connector example generation

* connector reference guide

* `connection` docs

* bump go client

* changelog update

* add specific complex connector examples
  • Loading branch information
patrickcping authored Apr 10, 2024
1 parent 128a8a5 commit d02fad0
Show file tree
Hide file tree
Showing 200 changed files with 17,775 additions and 7,635 deletions.
15 changes: 15 additions & 0 deletions .changelog/279.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
```release-note:bug
`resource/davinci_connection`: Fixed inability to import the `defaultUserPool` User Pool connector to Terraform state.
```

```release-note:enhancement
`resource/davinci_connection`: Added ability to configure complex properties as JSON format.
```

```release-note:note
`resource/davinci_connection`: Moved connector reference to separate guide.
```

```release-note:note
bump `github.com/samir-gandhi/davinci-client-go` 0.1.0 => 0.2.0
```
11 changes: 8 additions & 3 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,19 @@ install: build
@echo "==> Installing..."
go install -ldflags="-X main.version=$(VERSION)"

generate: build fmtcheck
generate: build generateconnectorref fmtcheck
@echo "==> Generating code..."
go generate ./...
go run github.com/hashicorp/terraform-plugin-docs/cmd/tfplugindocs

generateconnectorref: build
@echo "==> Generating connector docs & examples..."
rm examples/connectors/*.tf
go run github.com/samir-gandhi/dvgenerate/cmd/generate

test: build
@echo "==> Running tests..."
go test $(TEST) $(TESTARGS) -timeout=5m

testacc: build
@echo "==> Running acceptance tests..."
TF_ACC=1 go test $(TEST) -v $(TESTARGS) -timeout 120m -parallel 15
Expand Down
Loading

0 comments on commit d02fad0

Please sign in to comment.