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
* Add multi-tenancy support
Signed-off-by: Philipp Reinke <[email protected]>
* Rename dashboardSavedObjectMeta to kibanaSavedObjectMeta
Signed-off-by: Philipp Reinke <[email protected]>
---------
Signed-off-by: Philipp Reinke <[email protected]>
TF_ACC=1 go test ./... -v -parallel 20 -cover -short
49
49
```
50
+
50
51
Note: Starting from version `2.12.0`, the `admin` user password is determined by the `OPENSEARCH_INITIAL_ADMIN_PASSWORD` environment variable. If testing against a cluster with version `2.12.0` or later and have set `OPENSEARCH_INITIAL_ADMIN_PASSWORD=myStrongPassword123@456`, please update the URL as follows: `export OPENSEARCH_URL=http://admin:myStrongPassword123%40456@localhost:9200`
51
52
52
53
#### To Run Specific Test
54
+
53
55
```sh
54
56
cd provider/
55
57
TF_ACC=2 go test -run TestAccOpensearchOpenDistroDashboardTenant -v -cover -short
@@ -61,7 +63,6 @@ TF_ACC=2 go test -run TestAccOpensearchOpenDistroDashboardTenant -v -cover -sho
61
63
golangci-lint run --out-format=github-actions
62
64
```
63
65
64
-
65
66
### Debugging this provider
66
67
67
68
Build the executable, and start in debug mode:
@@ -86,13 +87,16 @@ $ terraform apply
86
87
The local provider will be used instead, and you should see debug information printed to the terminal.
87
88
88
89
## Version and Branching
90
+
89
91
As of now, this terraform-provider-opensearch repository maintains 2 branches:
90
-
*_main_ (2.x.x OpenSearch development)
91
-
*_1.x_ (1.x.x OpenSearch development)
92
+
93
+
-_main_ (2.x.x OpenSearch development)
94
+
-_1.x_ (1.x.x OpenSearch development)
92
95
93
96
Contributors should choose the corresponding branch(es) when commiting their change(s):
94
-
* If you have a change for a specific version, only open PR to specific branch
95
-
* If you have a change for all available versions, first open a PR on `main`, then open a backport PR with `[x]` in the title, with label `backport 1.x`, etc.
97
+
98
+
- If you have a change for a specific version, only open PR to specific branch
99
+
- If you have a change for all available versions, first open a PR on `main`, then open a backport PR with `[x]` in the title, with label `backport 1.x`, etc.
0 commit comments