You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Once the PR is merged, the release CI pipeline can be started by pushing a new release tag to the `main` branch.
153
+
* Once the PR is merged, the release CI pipeline can be started by pushing a new release tag to the `main` branch. (`git tag v0.11.13 && git push origin v0.11.13`)
Copy file name to clipboardExpand all lines: README.md
+1-56Lines changed: 1 addition & 56 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,64 +76,9 @@ provider "elasticstack" {
76
76
}
77
77
```
78
78
79
-
80
79
## Developing the Provider
81
80
82
-
If you wish to work on the provider, you'll first need [Go](http://www.golang.org) installed on your machine (see [Requirements](#requirements)).
83
-
84
-
To compile the provider, run `go install`. This will build the provider and put the provider binary in the `$GOPATH/bin` directory.
85
-
86
-
To install the provider locally into the `~/.terraform.d/plugins/...` directory one can use `make install` command. This will allow to refer this provider directly in the Terraform configuration without needing to download it from the registry.
87
-
88
-
To generate or update documentation, run `make gen`. All the generated docs will have to be committed to the repository as well.
89
-
90
-
In order to run the full suite of Acceptance tests, run `make testacc`.
91
-
92
-
If you have [Docker](https://docs.docker.com/get-docker/) installed, you can use following command to start the Elasticsearch container and run Acceptance tests against it:
93
-
94
-
```sh
95
-
$ make docker-testacc
96
-
```
97
-
98
-
To clean up the used containers and to free up the assigned container names, run `make docker-clean`.
99
-
100
-
Note: there have been some issues encountered when using `tfenv` for local development. It's recommended you move your version management for terraform to `asdf` instead.
0 commit comments