Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard-Barrett committed Oct 29, 2024
1 parent 5137c22 commit 6fca1ad
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<img align="right" width="60" height="60" src="images/terraform.png">

# 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)
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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"
}
```

Expand All @@ -218,13 +218,13 @@ You can also specify data resources and read in the `certificate` via AWS Secret
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.5.6 |
| <a name="requirement_platform"></a> [platform](#requirement\_platform) | 1.7.4 |
| <a name="requirement_platform"></a> [platform](#requirement\_platform) | 1.15.1 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_platform"></a> [platform](#provider\_platform) | 1.7.4 |
| <a name="provider_platform"></a> [platform](#provider\_platform) | 1.15.1 |

## Modules

Expand All @@ -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

Expand Down
4 changes: 2 additions & 2 deletions examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
}
Expand Down

0 comments on commit 6fca1ad

Please sign in to comment.