Skip to content

Commit

Permalink
chore: updates supported Keycloak version to 4.8.3.Final (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrparkers authored Feb 19, 2019
1 parent f8ebb78 commit 1520bf5
Show file tree
Hide file tree
Showing 7 changed files with 107 additions and 82 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
test-template: &test-template
docker:
- image: circleci/golang:1.11.4
- image: jboss/keycloak:4.2.1.Final
- image: jboss/keycloak:4.8.3.Final
environment:
DB_VENDOR: H2
KEYCLOAK_LOGLEVEL: DEBUG
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ https://mrparkers.github.io/terraform-provider-keycloak/
## Building

This project uses [Go Modules](https://github.com/golang/go/wiki/Modules) which requires Go 1.11.
I personally test the provider with version 0.11.8 of Terraform, and version 4.2.1.Final of Keycloak. Other versions may also work.
I personally test the provider with version 0.11.11 of Terraform, and version 4.8.3.Final of Keycloak. Other versions may also work.

```
GO111MODULE=on go mod download && make build
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
ports:
- 8389:389
keycloak:
image: jboss/keycloak:4.2.1.Final
image: jboss/keycloak:4.8.3.Final
depends_on:
- postgres
- openldap
Expand Down
2 changes: 2 additions & 0 deletions example/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,8 @@ resource "keycloak_openid_client_default_scopes" "default_client_scopes" {
default_scopes = [
"profile",
"email",
"roles",
"web-origins",
"${keycloak_openid_client_scope.test_client_scope.name}"
]
}
Expand Down
39 changes: 11 additions & 28 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,39 +2,22 @@ module github.com/mrparkers/terraform-provider-keycloak

require (
github.com/apparentlymart/go-cidr v1.0.0 // indirect
github.com/aws/aws-sdk-go v1.15.26 // indirect
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
github.com/blang/semver v3.5.1+incompatible // indirect
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 // indirect
github.com/hashicorp/errwrap v1.0.0
github.com/hashicorp/go-cleanhttp v0.5.0 // indirect
github.com/hashicorp/go-getter v0.0.0-20180809191950-4bda8fa99001 // indirect
github.com/hashicorp/go-hclog v0.0.0-20180828044259-75ecd6e6d645 // indirect
github.com/hashicorp/go-plugin v0.0.0-20180814222501-a4620f9913d1 // indirect
github.com/hashicorp/go-safetemp v1.0.0 // indirect
github.com/hashicorp/go-uuid v1.0.0 // indirect
github.com/hashicorp/go-version v1.0.0 // indirect
github.com/hashicorp/go-getter v1.1.0 // indirect
github.com/hashicorp/go-hclog v0.7.0 // indirect
github.com/hashicorp/go-plugin v0.0.0-20190212232519-b838ffee39ce // indirect
github.com/hashicorp/go-uuid v1.0.1 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/hashicorp/hcl2 v0.0.0-20180822193130-ed8144cda141 // indirect
github.com/hashicorp/hil v0.0.0-20170627220502-fa9f258a9250 // indirect
github.com/hashicorp/hcl2 v0.0.0-20190214115825-fb2bc46cdbe3 // indirect
github.com/hashicorp/hil v0.0.0-20190212132231-97b3a9cdfa93 // indirect
github.com/hashicorp/logutils v1.0.0 // indirect
github.com/hashicorp/terraform v0.11.8
github.com/hashicorp/yamux v0.0.0-20180826203732-cc6d2ea263b2 // indirect
github.com/jtolds/gls v4.2.1+incompatible // indirect
github.com/hashicorp/terraform v0.11.11
github.com/mitchellh/cli v1.0.0 // indirect
github.com/mitchellh/copystructure v1.0.0 // indirect
github.com/mitchellh/go-homedir v1.0.0 // indirect
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/hashstructure v1.0.0 // indirect
github.com/mitchellh/mapstructure v1.0.0 // indirect
github.com/oklog/run v1.0.0 // indirect
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d // indirect
github.com/smartystreets/goconvey v0.0.0-20180222194500-ef6db91d284a // indirect
github.com/ulikunitz/xz v0.5.4 // indirect
github.com/zclconf/go-cty v0.0.0-20180831220647-752f6a689f5e // indirect
golang.org/x/crypto v0.0.0-20180830192347-182538f80094 // indirect
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d // indirect
google.golang.org/genproto v0.0.0-20180831171423-11092d34479b // indirect
google.golang.org/grpc v1.14.0 // indirect
github.com/zclconf/go-cty v0.0.0-20190212192503-19dda139b164 // indirect
golang.org/x/crypto v0.0.0-20190219172222-a4c6cb3142f2 // indirect
golang.org/x/net v0.0.0-20190213061140-3a22650c66bd // indirect
)
Loading

0 comments on commit 1520bf5

Please sign in to comment.