Skip to content

Commit

Permalink
Bump ESv7 to 7.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
phillbaker committed Jan 7, 2020
1 parent fd75ea5 commit 5387064
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ cache:
env:
- ES_VERSION=5.6.16 ES_OSS_IMAGE=elasticsearch:${ES_VERSION} ES_IMAGE=docker.elastic.co/elasticsearch/elasticsearch:${ES_VERSION} ES_COMMAND="elasticsearch -Epath.repo=/tmp"
- ES_VERSION=6.8.0 ES_OSS_IMAGE=docker.elastic.co/elasticsearch/elasticsearch-oss:${ES_VERSION} ES_IMAGE=docker.elastic.co/elasticsearch/elasticsearch:${ES_VERSION} ES_OPENDISTRO_IMAGE=amazon/opendistro-for-elasticsearch:0.9.0
- ES_VERSION=7.0.1 ES_OSS_IMAGE=docker.elastic.co/elasticsearch/elasticsearch-oss:${ES_VERSION} ES_IMAGE=docker.elastic.co/elasticsearch/elasticsearch:${ES_VERSION}
- ES_VERSION=7.5.0 ES_OSS_IMAGE=docker.elastic.co/elasticsearch/elasticsearch-oss:${ES_VERSION} ES_IMAGE=docker.elastic.co/elasticsearch/elasticsearch:${ES_VERSION}
matrix:
allow_failures:
- go: master
Expand Down
18 changes: 9 additions & 9 deletions resource_elasticsearch_xpack_role_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,19 +159,19 @@ func testAccRoleResource(resourceName string) string {
role_name = "%s"
indices {
names = ["testIndice"]
privileges = ["testPrivilege"]
privileges = ["read"]
}
indices {
names = ["testIndice2"]
privileges = ["testPrivilege2"]
privileges = ["write"]
}
cluster = [
"all"
]
applications {
application = "testapp"
privileges = [
"admin",
"write",
"read"
]
resources = [
Expand All @@ -188,19 +188,19 @@ func testAccRoleResource_Updated(resourceName string) string {
role_name = "%s"
indices {
names = ["testIndice"]
privileges = ["testPrivilege"]
privileges = ["read"]
}
indices {
names = ["testIndice2"]
privileges = ["testPrivilege2"]
privileges = ["write"]
}
cluster = [
"all"
]
applications {
application = "testapp"
privileges = [
"admin",
"write",
"read",
"delete",
]
Expand All @@ -223,19 +223,19 @@ func testAccRoleResource_Global(resourceName string) string {
role_name = "%s"
indices {
names = ["testIndice"]
privileges = ["testPrivilege"]
privileges = ["read"]
}
indices {
names = ["testIndice2"]
privileges = ["testPrivilege2"]
privileges = ["write"]
}
cluster = [
"all",
]
applications {
application = "testapp"
privileges = [
"admin",
"write",
"read",
"delete",
]
Expand Down

0 comments on commit 5387064

Please sign in to comment.