diff --git a/README.md b/README.md index cd76031..db0601c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Terraform Configuration for JFrog Platform Resources +# Terraform Module for JFrog Artifactory Platform SAML+SCIM Settings [![CodeQL IaC](https://github.com/Richard-Barrett/terraform-artifactory-scim-integration/actions/workflows/iac-codeql.yaml/badge.svg)](https://github.com/Richard-Barrett/terraform-artifactory-scim-integration/actions/workflows/iac-codeql.yaml) [![Terraform Validate](https://github.com/Richard-Barrett/terraform-artifactory-scim-integration/actions/workflows/terraform_validate.yaml/badge.svg)](https://github.com/Richard-Barrett/terraform-artifactory-scim-integration/actions/workflows/terraform_validate.yaml) @@ -137,7 +137,7 @@ To create only the SAML settings, the module might look like this: ```hcl module "jfrog_platform" { - source = "git::https://github.com/Richard-Barrett/terraform-artifactory-scim-integration.git?ref=0.1.0" + source = "git::https://github.com/Richard-Barrett/terraform-artifactory-scim-integration.git?ref=0.2.0" # Enable only SAML settings create_saml_settings = true @@ -204,7 +204,7 @@ provider "platform" { } module "jfrog_platform" { - source = "git::https://github.com/Richard-Barrett/terraform-artifactory-scim-integration.git?ref=0.1.0" + source = "git::https://github.com/Richard-Barrett/terraform-artifactory-scim-integration.git?ref=0.2.0" } ``` @@ -218,13 +218,13 @@ You can also specify data resources and read in the `certificate` via AWS Secret | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.5.6 | -| [platform](#requirement\_platform) | 1.7.4 | +| [platform](#requirement\_platform) | 1.15.1 | ## Providers | Name | Version | |------|---------| -| [platform](#provider\_platform) | 1.7.4 | +| [platform](#provider\_platform) | 1.15.1 | ## Modules @@ -234,9 +234,9 @@ No modules. | Name | Type | |------|------| -| [platform_saml_settings.this](https://registry.terraform.io/providers/jfrog/platform/1.7.4/docs/resources/saml_settings) | resource | -| [platform_scim_group.this](https://registry.terraform.io/providers/jfrog/platform/1.7.4/docs/resources/scim_group) | resource | -| [platform_scim_user.this](https://registry.terraform.io/providers/jfrog/platform/1.7.4/docs/resources/scim_user) | resource | +| [platform_saml_settings.this](https://registry.terraform.io/providers/jfrog/platform/1.15.1/docs/resources/saml_settings) | resource | +| [platform_scim_group.this](https://registry.terraform.io/providers/jfrog/platform/1.15.1/docs/resources/scim_group) | resource | +| [platform_scim_user.this](https://registry.terraform.io/providers/jfrog/platform/1.15.1/docs/resources/scim_user) | resource | ## Inputs diff --git a/examples/complete/main.tf b/examples/complete/main.tf index b8c874e..8a439ec 100644 --- a/examples/complete/main.tf +++ b/examples/complete/main.tf @@ -2,8 +2,8 @@ terraform { required_version = ">= 1.5.6" required_providers { platform = { - source = "jfrog/platform" - version = "1.7.4" + source = "jfrog/platform" + version = "1.15.1" } } } diff --git a/main.tf b/main.tf index e7fe20b..f7c7616 100644 --- a/main.tf +++ b/main.tf @@ -2,8 +2,8 @@ terraform { required_version = ">= 1.5.6" required_providers { platform = { - source = "jfrog/platform" - version = "1.7.4" + source = "jfrog/platform" + version = "1.15.1" } } }