Skip to content

Commit

Permalink
Merge pull request #9 from BCDevOps/bump-keycloak-version
Browse files Browse the repository at this point in the history
Bump Keycloak provider version to 4.4.0
  • Loading branch information
wrnu authored Feb 23, 2024
2 parents f47734a + 4992bb8 commit f7189c7
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@

| Name | Version |
|------|---------|
| <a name="requirement_keycloak"></a> [keycloak](#requirement\_keycloak) | 2.0.0 |
| <a name="requirement_keycloak"></a> [keycloak](#requirement\_keycloak) | 4.4.0 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_keycloak"></a> [keycloak](#provider\_keycloak) | 2.0.0 |
| <a name="provider_keycloak"></a> [keycloak](#provider\_keycloak) | 4.4.0 |

## Modules

Expand All @@ -19,10 +19,10 @@ No modules.

| Name | Type |
|------|------|
| [keycloak_group.project_group](https://registry.terraform.io/providers/mrparkers/keycloak/2.0.0/docs/resources/group) | resource |
| [keycloak_group.role_groups](https://registry.terraform.io/providers/mrparkers/keycloak/2.0.0/docs/resources/group) | resource |
| [keycloak_group.tenant_group](https://registry.terraform.io/providers/mrparkers/keycloak/2.0.0/docs/data-sources/group) | data source |
| [keycloak_realm.realm](https://registry.terraform.io/providers/mrparkers/keycloak/2.0.0/docs/data-sources/realm) | data source |
| [keycloak_group.project_group](https://registry.terraform.io/providers/mrparkers/keycloak/4.4.0/docs/resources/group) | resource |
| [keycloak_group.role_groups](https://registry.terraform.io/providers/mrparkers/keycloak/4.4.0/docs/resources/group) | resource |
| [keycloak_group.tenant_group](https://registry.terraform.io/providers/mrparkers/keycloak/4.4.0/docs/data-sources/group) | data source |
| [keycloak_realm.realm](https://registry.terraform.io/providers/mrparkers/keycloak/4.4.0/docs/data-sources/realm) | data source |

## Inputs

Expand Down
6 changes: 3 additions & 3 deletions modules/account-sso/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
| Name | Version |
|------|---------|
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.56.0 |
| <a name="requirement_keycloak"></a> [keycloak](#requirement\_keycloak) | 2.0.0 |
| <a name="requirement_keycloak"></a> [keycloak](#requirement\_keycloak) | 4.4.0 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.56.0 |
| <a name="provider_http"></a> [http](#provider\_http) | n/a |
| <a name="provider_keycloak"></a> [keycloak](#provider\_keycloak) | 2.0.0 |
| <a name="provider_keycloak"></a> [keycloak](#provider\_keycloak) | 4.4.0 |

## Modules

Expand All @@ -28,7 +28,7 @@ No modules.
| [aws_iam_saml_provider.default](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_saml_provider) | resource |
| [aws_caller_identity.aws_context](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/caller_identity) | data source |
| [http_http.saml_idp_metadata](https://registry.terraform.io/providers/hashicorp/http/latest/docs/data-sources/http) | data source |
| [keycloak_realm.kc-lz-sso-realm](https://registry.terraform.io/providers/mrparkers/keycloak/2.0.0/docs/data-sources/realm) | data source |
| [keycloak_realm.kc-lz-sso-realm](https://registry.terraform.io/providers/mrparkers/keycloak/4.4.0/docs/data-sources/realm) | data source |

## Inputs

Expand Down
2 changes: 1 addition & 1 deletion modules/account-sso/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ data "keycloak_realm" "kc-lz-sso-realm" {
}

data "http" "saml_idp_metadata" {
url = "${var.kc_base_url}/auth/realms/${var.kc_realm}/protocol/saml/descriptor"
url = "${var.kc_base_url}/realms/${var.kc_realm}/protocol/saml/descriptor"
}

resource "aws_iam_saml_provider" "default" {
Expand Down
2 changes: 1 addition & 1 deletion modules/account-sso/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ terraform {
}
keycloak = {
source = "mrparkers/keycloak"
version = "2.0.0"
version = "4.4.0"
}
}
}
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
keycloak = {
source = "mrparkers/keycloak"
version = "2.0.0"
version = "4.4.0"
}
}
}

0 comments on commit f7189c7

Please sign in to comment.