diff --git a/.github/.frogbot/frogbot-config.old b/.github/.frogbot/frogbot-config.old
new file mode 100644
index 0000000000..b8bc74b961
--- /dev/null
+++ b/.github/.frogbot/frogbot-config.old
@@ -0,0 +1,9 @@
+- params:
+ git:
+ repoName: "BenchmarkJava"
+ branches:
+ - master
+ scan:
+ projects:
+ - workingDirs: []
+ repository: w2-week2-maven-dev-virtual
\ No newline at end of file
diff --git a/.github/workflows/frogbot-scan-repository.yml b/.github/workflows/frogbot-scan-repository.yml
new file mode 100644
index 0000000000..070e5d4f82
--- /dev/null
+++ b/.github/workflows/frogbot-scan-repository.yml
@@ -0,0 +1,63 @@
+name: "Frogbot Scan Repository"
+on:
+ workflow_dispatch:
+ schedule:
+ # The repository will be scanned once a day at 00:00 GMT.
+ - cron: "0 0 * * *"
+permissions:
+ contents: write
+ pull-requests: write
+ security-events: write
+ # [Mandatory If using OIDC authentication protocol instead of JF_ACCESS_TOKEN]
+ id-token: write
+jobs:
+ scan-repository:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ # The repository scanning will be triggered periodically on the following branches.
+ branch: ["master"]
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v4
+ - name: Run Frogbot Scan
+ uses: jfrog/frogbot@v2
+ continue-on-error: true # Continue even if Frogbot fails due to false positives
+
+ env:
+ JF_URL: https://rodolphefplus.jfrog.io
+ JF_GIT_BASE_BRANCH: ${{ matrix.branch }}
+ JF_GIT_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ JF_DEPS_REPO: ${{ vars.MVN_DEV_REPO_DEPLOY_RELEASES }}
+
+ with:
+ oidc-provider-name: rodolphef-benchmarkjava
+ oidc-audience: rodolphef-benchmarkjava-audience
+ # [Mandatory if JF_ACCESS_TOKEN is not provided]
+ # JFrog username with 'read' permissions for Xray. Must be provided with JF_PASSWORD
+ # JF_USER: ${{ secrets.JF_USER }}
+
+ # [Mandatory if JF_ACCESS_TOKEN is not provided]
+ # JFrog password. Must be provided with JF_USER
+ # JF_PASSWORD: ${{ secrets.JF_PASSWORD }}
+
+ # [Mandatory]
+ # The GitHub token is automatically generated for the job
+
+
+ # [Mandatory]
+ # The name of the branch on which Frogbot will perform the scan
+
+
+ # [Mandatory if using OIDC authentication protocol instead of JF_ACCESS_TOKEN]
+ # Insert to oidc-provider-name the 'Provider Name' defined in the OIDC integration configured in the JPD
+ # with:
+ # oidc-provider-name: ""
+
+ - name: Check Frogbot Exit Code
+ if: failure()
+ run: |
+ echo "Frogbot scan completed with warnings/errors, but continuing..."
+ echo "This may be due to false positives in dependency scanning."
+ echo "Please review the scan results manually."
+
diff --git a/.github/workflows/maven.yaml b/.github/workflows/maven.yaml
index 2997beeb28..932b020820 100644
--- a/.github/workflows/maven.yaml
+++ b/.github/workflows/maven.yaml
@@ -1,6 +1,18 @@
-name: Java CI with Maven
+name: BENCHMARKJAVA build with Maven
+
+on:
+ push:
+ pull_request:
+ schedule:
+ # The repository will be scanned once a day at 00:00 GMT.
+ - cron: "0 0 * * *"
+permissions:
+ actions: read # for detecting the Github Actions environment
+ id-token: write # for creating OIDC tokens for signing
+ packages: write # for uploading attestations
+ contents: read # read the contents permission
+ security-events: write # for uploading code scanning
-on: [push, pull_request]
jobs:
build:
@@ -16,8 +28,29 @@ jobs:
with:
java-version: '11'
distribution: 'zulu'
+ - name: Setup JFrog CLI
+ uses: jfrog/setup-jfrog-cli@v4
+ env:
+ JF_URL: https://rodolphefplus.jfrog.io
+ with:
+ oidc-provider-name: rodolphef-benchmarkjava
+ oidc-audience: rodolphef-benchmarkjava-audience
+ - name : Config JFrog CLI
+ run : |
+ jf mvnc --repo-deploy-releases=${{ vars.MVN_DEV_REPO_DEPLOY_RELEASES }} --repo-deploy-snapshots=${{ vars.MVN_DEV_REPO_DEPLOY_SNAPSHOTS }} --repo-resolve-releases=${{ vars.MVN_DEV_REPO_RESOLVE_RELEASES }} --repo-resolve-snapshots=${{ vars.MVN_DEV_REPO_RESOLVE_SNAPSHOTS }}
+
+ - name: Clear Maven cache for problematic plugins
+ run: |
+ rm -rf ~/.m2/repository/com/diffplug/spotless
+ rm -rf ~/.m2/repository/org/jasig/mojo/jspc
+ rm -rf ~/.m2/repository/com/h3xstream/findsecbugs
+ # Also clear plugin metadata cache
+ find ~/.m2/repository -name "*.lastUpdated" -delete 2>/dev/null || true
+
- name: Run Spotless check
- run: mvn spotless:check
+ run: jf mvn -e -U spotless:check
- name: Create WAR
- run: mvn package
+ run: jf mvn package
+ - name: Deploy WAR to Artifactory
+ run: jf mvn deploy
diff --git a/.vscode/shipyard.json b/.vscode/shipyard.json
new file mode 100644
index 0000000000..4f5d158e2b
--- /dev/null
+++ b/.vscode/shipyard.json
@@ -0,0 +1,4 @@
+{
+ "tabs": [],
+ "terminals": []
+}
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index df06267aea..84752ac3ac 100644
--- a/pom.xml
+++ b/pom.xml
@@ -29,6 +29,34 @@
+
+
+ maven-central
+ Maven Central Repository
+ https://repo1.maven.org/maven2
+
+ true
+
+
+ false
+
+
+
+
+
+
+ maven-central
+ Maven Central Repository
+ https://repo1.maven.org/maven2
+
+ true
+
+
+ false
+
+
+
+
@@ -776,8 +804,8 @@
org.bouncycastle
- bcprov-jdk15on
- 1.70
+ bcprov-jdk18on
+ 1.78
@@ -861,14 +889,6 @@
benchmark
-
-
- co.leantechniques
- maven-buildtime-extension
- 3.0.5
-
-
-
${basedir}/src/main/resources
@@ -901,11 +921,6 @@
-
- org.apache.maven.plugins
- maven-release-plugin
- 3.1.1
-
@@ -1082,12 +1097,6 @@
-
- com.h3xstream.findsecbugs
- findsecbugs-plugin
-
- 1.14.0
-
com.internetitem
diff --git a/terraform/.terraform.lock.hcl b/terraform/.terraform.lock.hcl
new file mode 100644
index 0000000000..240427bc40
--- /dev/null
+++ b/terraform/.terraform.lock.hcl
@@ -0,0 +1,18 @@
+# This file is maintained automatically by "terraform init".
+# Manual edits may be lost in future updates.
+
+provider "registry.terraform.io/integrations/github" {
+ version = "6.6.0"
+ constraints = "~> 6.0"
+ hashes = [
+ "h1:P4SRG4605PvPKASeDu1lW49TTz1cCGsjQ7qbOBgNd6I=",
+ ]
+}
+
+provider "registry.terraform.io/jfrog/platform" {
+ version = "2.2.1"
+ constraints = "2.2.1"
+ hashes = [
+ "h1:4lPrNpywY9SH5ddrSIad/e7sCNllAi3T8xdd0e/NO2s=",
+ ]
+}
diff --git a/terraform/.terraform/providers/registry.terraform.io/integrations/github/6.6.0/darwin_arm64/CHANGELOG.md b/terraform/.terraform/providers/registry.terraform.io/integrations/github/6.6.0/darwin_arm64/CHANGELOG.md
new file mode 100644
index 0000000000..98b391f118
--- /dev/null
+++ b/terraform/.terraform/providers/registry.terraform.io/integrations/github/6.6.0/darwin_arm64/CHANGELOG.md
@@ -0,0 +1,809 @@
+# NOTE: CHANGELOG.md is deprecated
+
+After the release of v4.24.0, please see the [GitHub release notes](https://github.com/integrations/terraform-provider-github/releases) for the provider in order to view the most up-to-date changes.
+
+# 4.24.0 (Apr 28, 2022)
+
+ENHANCEMENTS:
+* Support for allow_forking on a repository/update to go-github v42 by @diogopms in https://github.com/integrations/terraform-provider-github/pull/1033
+* Upgrade go-github to v43.0.0 by @btkostner in https://github.com/integrations/terraform-provider-github/pull/1087
+
+BUG FIXES:
+
+* Fix go module path by @turkenh in https://github.com/integrations/terraform-provider-github/pull/961
+* fix: remove incorrect required schema key on ref data source by @youcandanch in https://github.com/integrations/terraform-provider-github/pull/1109
+* Bump Go version for Actions release CI to 1.18 by @kfcampbell in https://github.com/integrations/terraform-provider-github/pull/1134
+* build(deps): bump actions/setup-go from 2 to 3 by @dependabot in https://github.com/integrations/terraform-provider-github/pull/1110
+* Fix linting issues by @kfcampbell in https://github.com/integrations/terraform-provider-github/pull/1107
+
+
+# 4.23.0 (Mar 25, 2022)
+
+ENHANCEMENTS:
+
+* Add support for disabling the use of the vulnerability management endpoint by @enieuw in https://github.com/integrations/terraform-provider-github/pull/1022
+* Added orgname in github_orgranization attributes by @Kavinraja-G in https://github.com/integrations/terraform-provider-github/pull/1052
+* Add a data source for refs. by @youcandanch in https://github.com/integrations/terraform-provider-github/pull/1084
+* build(deps): bump actions/checkout from 2 to 3 by @dependabot in https://github.com/integrations/terraform-provider-github/pull/1086
+
+BUG FIXES:
+
+* fix: use pagination to fetch all team members by @carocad in https://github.com/integrations/terraform-provider-github/pull/1092
+* docs: fix typos in d/users.html.markdown by @pallxk in https://github.com/integrations/terraform-provider-github/pull/1049
+
+# 4.22.0 (Mar 18, 2022)
+
+ENHANCEMENTS:
+
+* feat: add `tree` data source by @jasonwalsh in https://github.com/integrations/terraform-provider-github/pull/1027
+* feat: support for issues using github_issue resource by @ewilde in https://github.com/integrations/terraform-provider-github/pull/1047
+* feat: add configurable read_delay_ms by @morremeyer in https://github.com/integrations/terraform-provider-github/pull/1054
+
+## 4.21.0 (Mar 11, 2022)
+
+ENHANCEMENTS:
+
+* Adding BypassPullRequestActorIDs to branch protection by @jtyr in https://github.com/integrations/terraform-provider-github/pull/1030
+* Adding suspended_at attribute to github_user data source by @mrobinson-anaplan in https://github.com/integrations/terraform-provider-github/pull/1070
+* Documentation: Add id to github_user data dource by @kangaechu in https://github.com/integrations/terraform-provider-github/pull/1061
+
+BUG FIXES:
+
+* fix: use the appropriate ID when trying to import `github_team_members` objects by @bison-brandon in https://github.com/integrations/terraform-provider-github/pull/1074
+* Environment ID gets set incorrectly on update by @aceresia-bg in https://github.com/integrations/terraform-provider-github/pull/1058
+* Fix whitespace in documentation for branch_protection_v3 by @JCradock in https://github.com/integrations/terraform-provider-github/pull/1059
+
+## 4.20.1 (Mar 3, 2022)
+
+BUG FIXES:
+
+* Remove team from state if deletion failed and it does not exist by @cytopia in https://github.com/integrations/terraform-provider-github/pull/1039
+ * Note that this is a behavior change from previous GitHub Terraform provider releases: now, if a GitHub team deletion operation fails and the team does not exist, the team will be automatically removed from state.
+* Make data_github_repository work with non-existing repositories by @tobiassjosten in https://github.com/integrations/terraform-provider-github/pull/1031
+* Standardize logs by @kfcampbell in https://github.com/integrations/terraform-provider-github/pull/1053
+
+## 4.20.0 (Feb 3, 2022)
+
+ENHANCEMENTS:
+
+* Add new resource `github_team_members` to allow authoritative team management by @stawik-mesa in https://github.com/integrations/terraform-provider-github/pull/975
+
+BUG FIXES:
+
+* test: checkout pull request via sha instead of ref by @jcudit in https://github.com/integrations/terraform-provider-github/pull/1043
+* Small CI cleanup by @kfcampbell in https://github.com/integrations/terraform-provider-github/pull/1048
+
+**Full Changelog**: https://github.com/integrations/terraform-provider-github/compare/v4.19.2...v4.20.0
+
+
+## 4.19.2 (Jan 20, 2022)
+
+BUG FIXES:
+
+- Update `go-github` to v42.0.0 ([#1035](https://github.com/integrations/terraform-provider-github/pull/1035))
+- Adjust count requirement of `required_approving_review_count` option for `github_branch_protection` ([#971](https://github.com/integrations/terraform-provider-github/pull/971))
+- Add `nil` check for `require_conversation_resolution` field of `github_branch_protection` resource ([#1032](https://github.com/integrations/terraform-provider-github/pull/1032))
+
+## 4.19.1 (Jan 5, 2022)
+
+BUG FIXES:
+
+- Update `go-github` to v41.0.0 ([#993](https://github.com/integrations/terraform-provider-github/pull/993))
+- Add `nil` check for `plan` field of `github_organization` data source ([#1016](https://github.com/integrations/terraform-provider-github/pull/1016))
+
+
+## 4.19.0 (Dec 13, 2021)
+
+ENHANCEMENTS:
+
+- Export `branches` attribute of `github_repository` resource ([[#959](https://github.com/integrations/terraform-provider-github/pull/959)])
+- Add `require_conversation_resolution` support for `github_branch_protection` resource ([[#904](https://github.com/integrations/terraform-provider-github/pull/904)])
+
+BUG FIXES:
+
+- Adjust length requirement to `topics` option for `github_repository` ([[#996](https://github.com/integrations/terraform-provider-github/pull/996)])
+- Add `required_linear_history` support for `github_branch_protection` resource ([[#935](https://github.com/integrations/terraform-provider-github/pull/935)])
+
+
+## 4.18.2 (Nov 30, 2021)
+
+BUG FIXES:
+
+- Add length requirement to `name` option for `github_repository` ([[#965](https://github.com/integrations/terraform-provider-github/pull/965)])
+- Various documentation fixes 🙇
+
+## 4.18.1 (Nov 22, 2021)
+
+BUG FIXES:
+
+- Add length requirement to `topics` option for `github_repository` ([[#951](https://github.com/integrations/terraform-provider-github/pull/951)])
+- Add pagination to `selected_repositories` option for `github_actions_runner_group` ([[#970](https://github.com/integrations/terraform-provider-github/pull/970)])
+- Add handling for new `node_id` format introduced to the GitHub GraphQL API (`github_repository`) ([[#914](https://github.com/integrations/terraform-provider-github/pull/914)])
+
+## 4.18.0 (Nov 8, 2021)
+
+ENHANCEMENTS:
+
+- **New Resource:** `github_actions_organization_permissions` ([[#920](https://github.com/integrations/terraform-provider-github/pull/920)])
+
+BUG FIXES:
+
+- Add newline compatbility to GitHub App provider authentication ([[#931](https://github.com/integrations/terraform-provider-github/pull/931)])
+- Fix `strict` setting of `required_status_checks` for `github_branch_protection` resource ([[#880](https://github.com/integrations/terraform-provider-github/issues/880)])
+
+
+## 4.17.0 (Oct 17, 2021)
+
+ENHANCEMENTS:
+
+- **New Resource:** `github_repository_autolink_reference` ([[#924](https://github.com/integrations/terraform-provider-github/pull/924)])
+- **New Data Sources** `github_users` ([#900](https://github.com/integrations/terraform-provider-github/pull/900))
+- Add `allow_auto_merge` option for `github_repository` ([#923](https://github.com/integrations/terraform-provider-github/pull/923))
+
+BUG FIXES:
+
+- Various documentation fixes 🙇
+
+## 4.16.0 (Oct 5, 2021)
+
+ENHANCEMENTS:
+
+* **New Data Source:** `github_repository_file` ([#896](https://github.com/integrations/terraform-provider-github/pull/896))
+- Add `write_delay_ms` provider option [#907](https://github.com/integrations/terraform-provider-github/pull/907))
+
+BUG FIXES:
+
+- Update `go-github` to v39.0.0 ([#905](https://github.com/integrations/terraform-provider-github/pull/905))
+
+## 4.15.1 (Sep 23, 2021)
+
+BUG FIXES:
+
+- Revert suppression of `etag` changes for `github_repository` resources ([[#910](https://github.com/integrations/terraform-provider-github/issues/910)])
+
+## 4.15.0 (Sep 22, 2021)
+
+ENHANCEMENTS:
+
+- **New Resource:** `github_actions_organization_secret_repositories` ([[#882](https://github.com/integrations/terraform-provider-github/issues/882)])
+- **New Resource:** `github_actions_runner_group` ([[#821](https://github.com/integrations/terraform-provider-github/issues/821)])
+- Add `require_linear_history` to `github_branch_protection` resource ([[#887](https://github.com/integrations/terraform-provider-github/issues/887)])
+- Add `branches` attribute to `github_repository` resource ([[#892](https://github.com/integrations/terraform-provider-github/issues/892)])
+
+
+BUG FIXES:
+
+- Update documentation for `d/github_ip_ranges` ([#895](https://github.com/integrations/terraform-provider-github/issues/895))
+- Update `go-github` to v38 ([#901](https://github.com/integrations/terraform-provider-github/issues/901))
+- Suppress `etag` changes for `github_repository` resources ([[#909](https://github.com/integrations/terraform-provider-github/issues/909)])
+
+
+## 4.14.0 (Sep 2, 2021)
+
+BUG FIXES:
+
+- Adds support for recreating a `github_team_repository` when repository is renamed ([#870](https://github.com/integrations/terraform-provider-github/issues/870))
+- Adds logging of configured authentication on provider startup ([#867](https://github.com/integrations/terraform-provider-github/issues/867))
+- Update documentation for `github_ip_ranges` data source ([#857](https://github.com/integrations/terraform-provider-github/issues/857))
+- Add support for IPv6 addresses returned by `github_ip_ranges` data source ([#883](https://github.com/integrations/terraform-provider-github/issues/883))
+- Update `go-github` to v37.0.0 ([#893](https://github.com/integrations/terraform-provider-github/issues/893))
+
+## 4.13.0 (Jul 26, 2021)
+
+BUG FIXES:
+
+- Fix setting `vulnerability_alerts` on private `github_repository` creation ([#768](https://github.com/integrations/terraform-provider-github/issues/768))
+
+ENHANCEMENTS:
+
+- Add `restrict_dismissals` option to `github_branch_protection` resource ([#839](https://github.com/integrations/terraform-provider-github/issues/839))
+
+## 4.12.2 (Jul 12, 2021)
+
+BUG FIXES:
+
+- Update `go-github` to v36.0.0 ([#841](https://github.com/integrations/terraform-provider-github/issues/841))
+
+## 4.12.0 (Jun 18, 2021)
+
+ENHANCEMENTS:
+
+* **New Resource:** `github_actions_environment_secret` ([[#805](https://github.com/integrations/terraform-provider-github/issues/805)])
+* **New Resource:** `github_repository_environment` ([[#805](https://github.com/integrations/terraform-provider-github/issues/805)])
+* Add `members` field to `github_organization` data source ([[#811](https://github.com/integrations/terraform-provider-github/issues/811)])
+* Add `repositories` field to `github_team` data source ([[#791](https://github.com/integrations/terraform-provider-github/issues/791)])
+* Add `repositories` field to `github_organization_teams` data source ([[#791](https://github.com/integrations/terraform-provider-github/issues/791)])
+
+
+BUG FIXES:
+
+- Document incompatibility between `github_app_installation_repository` and GitHub App authentication ([#818](https://github.com/integrations/terraform-provider-github/issues/818))
+- Document migration from `hashicorp/terraform-provider-github ([#816](https://github.com/integrations/terraform-provider-github/issues/816))
+- Allow users and apps to also be applied to push restrictions for `github_branch_protection` ([#824](https://github.com/integrations/terraform-provider-github/issues/824))
+
+
+## 4.11.0 (Jun 7, 2021)
+
+BREAKING CHANGES:
+
+- Allow PEM data to be passed directly for GitHub App provider authentication ([#803](https://github.com/integrations/terraform-provider-github/issues/803))
+
+ENHANCEMENTS:
+
+- Add `encrypted_value` field to `github_actions_secret` and `github_actions_organization_secret` resources ([#807](https://github.com/integrations/terraform-provider-github/issues/807))
+
+BUG FIXES:
+
+- Fix error handling when branch does not exist for `github_branch` resource ([#806](https://github.com/integrations/terraform-provider-github/issues/806))
+
+## 4.10.1 (May 25, 2021)
+
+BUG FIXES:
+
+* Improve documentation for provider authentication options ([#801](https://github.com/integrations/terraform-provider-github/issues/801))
+
+
+## 4.10.0 (May 21, 2021)
+
+ENHANCEMENTS:
+
+* Add GitHub App authentication option to provider ([#753](https://github.com/integrations/terraform-provider-github/issues/753))
+* Add Actions and Dependabot IP ranges to `github_ip_ranges` data source ([#784](https://github.com/integrations/terraform-provider-github/issues/784))
+* Add additional fields to `github_repository` data source ([#778](https://github.com/integrations/terraform-provider-github/issues/778))
+
+## 4.9.4 (May 11, 2021)
+
+BUG FIXES:
+
+- Add EMU support by allowing `internal` visibility to be configured for `github_repository` ([#781](https://github.com/integrations/terraform-provider-github/issues/781))
+- Update `go-github` to 35.1.0 ([#772](https://github.com/integrations/terraform-provider-github/issues/772))
+
+## 4.9.3 (May 7, 2021)
+
+BUG FIXES:
+
+- Mark `slug` as `computed` when `name` is changed for `github_team` ([#757](https://github.com/integrations/terraform-provider-github/issues/757))
+
+## 4.9.2 (April 18, 2021)
+
+BUG FIXES:
+
+- correct visibility for repositories created via a template ([#761](https://github.com/integrations/terraform-provider-github/issues/761))
+
+
+## 4.9.1 (April 17, 2021)
+
+BUG FIXES:
+
+- Bump Go version to 1.16 for acceptance tests and darwin/arm64 releases
+- Update acceptance tests to v2.2.0
+- Re-instate releases of darwin/arm64
+
+## 4.9.0 (April 17, 2021)
+
+ENHANCEMENTS:
+
+* **New Data Sources** `github_repository_pull_request` / `github_repository_pull_requests` ([#739](https://github.com/integrations/terraform-provider-github/issues/739))
+* **New Resource** `github_repository_pull_request` ([#739](https://github.com/integrations/terraform-provider-github/issues/739))
+* Add `repositories` attribute for `github_organization` data source ([#750](https://github.com/integrations/terraform-provider-github/issues/750))
+* Add import functionality for `github_actions_organization_secret` ([#745](https://github.com/integrations/terraform-provider-github/issues/745))
+
+BUG FIXES:
+
+- Detect and overwrite value drift for `github_actions_secret` and `github_actions_organization_secret` ([#740](https://github.com/integrations/terraform-provider-github/pull/740))
+- Do not destroy repositories when `name` attribute changes ([#699](https://github.com/integrations/terraform-provider-github/pull/699))
+
+## 4.8.0 (April 9, 2021)
+
+BUG FIXES:
+
+- Deprecate `organization` / `GITHUB_ORGANIZATION` provider configuration options ([#735](https://github.com/integrations/terraform-provider-github/pull/735))
+
+## 4.7.0 (April 9, 2021)
+
+REGRESSIONS:
+
+- new repositories created via a template have a public visibility ([#758](https://github.com/integrations/terraform-provider-github/issues/758))
+ - workaround: a subsequent plan / apply will set the visibility to what is configured
+ - fix: see v4.9.2
+
+ENHANCEMENTS:
+
+* **New Data Source** `github_organization_teams` ([#725](https://github.com/integrations/terraform-provider-github/issues/725))
+
+BUG FIXES:
+
+- Set visibility on create instead of update for `github_repository` ([#746](https://github.com/integrations/terraform-provider-github/pull/746))
+- Various documentation updates
+
+## 4.6.0 (March 23, 2021)
+
+ENHANCEMENTS:
+
+* **New Resource** `github_app_installation_repository` ([#690](https://github.com/integrations/terraform-provider-github/issues/690))
+
+BUG FIXES:
+
+- Fix panic for `github_repository_file` ([#732](https://github.com/integrations/terraform-provider-github/pull/732))
+- Improve error messaging for `github_branch` ([#734](https://github.com/integrations/terraform-provider-github/pull/734))
+- Improve error messaging for `github_branch_protection` ([#721](https://github.com/integrations/terraform-provider-github/pull/721))
+- Fix update operation for `github_default_branch` ([#719](https://github.com/integrations/terraform-provider-github/pull/719))
+- Add name validation for `github_actions_organization_secret` ([#714](https://github.com/integrations/terraform-provider-github/pull/714))
+
+
+## 4.5.2 (March 16, 2021)
+
+BUG FIXES:
+
+- Fix updating `default_branch` on `github_repository` ([#719](https://github.com/integrations/terraform-provider-github/pull/719))
+
+
+## 4.5.1 (March 3, 2021)
+
+BUG FIXES:
+
+- Fix `github_branch_protection` import by repository node ID and pattern ([#713](https://github.com/integrations/terraform-provider-github/pull/713))
+- Add pagination when retrieving team members for `data_source_github_team` ([#702](https://github.com/integrations/terraform-provider-github/pull/702))
+
+
+## 4.5.0 (February 17, 2021)
+
+ENHANCEMENTS:
+
+- Add ability for `github_team_repository` to accept slug as a valid `team_id` ([#693](https://github.com/integrations/terraform-provider-github/pull/693))
+
+BUG FIXES:
+
+- Add more context to error messaging for `github_branch_protection` ([#691](https://github.com/integrations/terraform-provider-github/pull/691))
+- Satisfy linter recommendation for `github_branch_protection` ([#694](https://github.com/integrations/terraform-provider-github/pull/694))
+
+## 4.4.0 (February 5, 2021)
+
+BUG FIXES:
+
+- Add `create_default_maintainer` option to `github_team` ([#527](https://github.com/integrations/terraform-provider-github/pull/527)), ([#104](https://github.com/integrations/terraform-provider-github/pull/104)), ([#130](https://github.com/integrations/terraform-provider-github/pull/130))
+- Add diff-suppression option to `repository_collaborator` ([#683](https://github.com/integrations/terraform-provider-github/pull/683))
+
+
+## 4.3.2 (February 2, 2021)
+
+BUG FIXES:
+
+* Improved detection of repository name for `github_branch_protection` ([#684](https://github.com/integrations/terraform-provider-github/issues/684))
+* Reverts error handling in provider configuration ([#685](https://github.com/integrations/terraform-provider-github/issues/685))
+
+## 4.3.1 (January 22, 2021)
+
+REGRESSIONS:
+
+- provider configuration breaks for individual accounts ([#678](https://github.com/integrations/terraform-provider-github/issues/678))
+
+BUG FIXES:
+
+* Send valid payload when editing a repository resource with `github_branch_default` ([#666](https://github.com/integrations/terraform-provider-github/issues/666))
+* Add handling to surface errors in provider configuration ([#668](https://github.com/integrations/terraform-provider-github/issues/668))
+
+## 4.3.0 (January 14, 2021)
+
+ENHANCEMENTS:
+
+* **New Resource** `github_branch_protection_v3` ([#642](https://github.com/integrations/terraform-provider-github/issues/642))
+* Add `pages` feature to `github_repository` ([#490](https://github.com/integrations/terraform-provider-github/issues/490))
+
+
+## 4.2.0 (January 07, 2021)
+
+BREAKING CHANGES:
+
+- Project transfer from `terraform-providers` organization to `integrations`
+ - See [#652](https://github.com/integrations/terraform-provider-github/issues/652) for migration steps and [#656](https://github.com/integrations/terraform-provider-github/issues/656) for discussion
+
+ENHANCEMENTS:
+
+- Add `allowDeletions` and `allowsForcePushes` to `github_branch_protection` ([#623](https://github.com/integrations/terraform-provider-github/pull/623))
+- Add GitHub App actor support to `github_branch_protection` ([#615](https://github.com/integrations/terraform-provider-github/pull/615))
+
+BUG FIXES:
+
+- Allow `required_status_checks` `strict` to be `false` for `github_branch_protection` ([#614](https://github.com/integrations/terraform-provider-github/pull/614))
+- Remove `ForceNew` on template-related options for `github_repository` ([#609](https://github.com/integrations/terraform-provider-github/pull/609))
+- Fix parsing of input during imports of `github_branch_protection` ([#610](https://github.com/integrations/terraform-provider-github/pull/610))
+- `github_repository_file` resource no longer iterates through all commits ([#644](https://github.com/integrations/terraform-provider-github/pull/644))
+
+## 4.1.0 (December 01, 2020)
+
+ENHANCEMENTS:
+
+- Add `github_actions_organization_secret` resource ([#261](https://github.com/integrations/terraform-provider-github/pull/261))
+- Add `github_repository_milestone` resource ([#470](https://github.com/integrations/terraform-provider-github/pull/470))
+- Add `github_repository_milestone` data source ([#470](https://github.com/integrations/terraform-provider-github/pull/470))
+- Add `github_project_card` resource ([#460](https://github.com/integrations/terraform-provider-github/pull/460))
+- Add `github_branch_default` resource ([#194](https://github.com/integrations/terraform-provider-github/pull/194))
+
+
+## 4.0.1 (November 18, 2020)
+
+BUG FIXES:
+
+- `github_team` data source query no longer iterates through a list of teams ([#579](https://github.com/integrations/terraform-provider-github/pull/579))
+- `github_repository_file` resource no longer iterates through all commits ([#589](https://github.com/integrations/terraform-provider-github/pull/589))
+- fix parsing of `repo:pattern` format during `github_branch_protection` import ([#599](https://github.com/integrations/terraform-provider-github/pull/599))
+
+
+## 4.0.0 (November 10, 2020)
+
+REGRESSIONS:
+
+- fails parsing of `repo:pattern` format during `github_branch_protection` import ([#597](https://github.com/integrations/terraform-provider-github/issues/597))
+
+BREAKING CHANGES:
+
+- `pattern` replaces `branch` in changes to `github_branch_protection` introduced in `v3.1.0` ([#566](https://github.com/integrations/terraform-provider-github/issues/566))
+- `dismissal_restrictions` documented for `github_branch_protection` ([#569](https://github.com/integrations/terraform-provider-github/pull/569))
+- project license changes from MPL2 to MIT ([#591](https://github.com/integrations/terraform-provider-github/pull/591))
+
+BUG FIXES:
+
+- `repository_id` for `github_branch_protection` accepts repository name as well as node ID ([#593](https://github.com/integrations/terraform-provider-github/issues/593))
+
+ENHANCEMENTS:
+
+- Add support to get currently authenticated user to `data_source_github_user` ([#261](https://github.com/integrations/terraform-provider-github/pull/261))
+- Add importing to `github_organization_webhook` ([#487](https://github.com/integrations/terraform-provider-github/pull/487))
+
+
+## 3.1.0 (October 12, 2020)
+
+REGRESSIONS:
+
+- undocumented, breaking configuration changes to `github_branch_protection` ([#566](https://github.com/integrations/terraform-provider-github/issues/566))
+- slowed performance of `github_branch_protection` ([#567](https://github.com/integrations/terraform-provider-github/issues/567))
+- change to default branch breaks refresh of existing `github_repository_file` resources ([#564](https://github.com/integrations/terraform-provider-github/issues/564))
+
+BREAKING CHANGES:
+
+- Deprecate `anonymous` Flag For Provider Configuration ([#506](https://github.com/integrations/terraform-provider-github/issues/506))
+
+BUG FIXES:
+
+- re-instante resources unavailable in the context of an organization ([#501](https://github.com/integrations/terraform-provider-github/issues/501))
+- allow overwrite-on-create behaviour for `github_repository_file` resource ([#459](https://github.com/integrations/terraform-provider-github/issues/459))
+
+
+ENHANCEMENTS:
+
+- update `go-github` to `v32.1.0` ([#475](https://github.com/integrations/terraform-provider-github/issues/475))
+- add `vulnerability_alerts` to `github_repository` ([#444](https://github.com/integrations/terraform-provider-github/issues/444))
+- add `archive_on_destroy` to `github_repository` ([#432](https://github.com/integrations/terraform-provider-github/issues/432))
+- uplift `branch_protection` to GraphQL ([#337](https://github.com/integrations/terraform-provider-github/issues/337))
+
+
+## 3.0.0 (September 08, 2020)
+
+BREAKING CHANGES:
+
+- `token` becomes optional
+- `organization` no longer deprecated
+- `individual` and `anonymous` removed
+- `owner` inferred from `organization`
+- `base_url` provider parameter no longer requires `/api/v3` suffix
+
+BUG FIXES:
+
+- `terraform validate` fails because of missing token ([#503](https://github.com/integrations/terraform-provider-github/issues/503))
+- organization support for various resources ([#501](https://github.com/integrations/terraform-provider-github/issues/501))
+
+ENHANCEMENTS:
+
+* **New Data Source** `github_organization` ([#521](https://github.com/integrations/terraform-provider-github/issues/521))
+
+
+## 2.9.2 (July 14, 2020)
+
+- Adds deprecation of `anonymous` flag for provider configuration ahead of next major release ([#506](https://github.com/integrations/terraform-provider-github/issues/506))
+- Adds deprecation of `individual` flag for provider configuration ahead of next major release ([#512](https://github.com/integrations/terraform-provider-github/issues/512))
+
+## 2.9.1 (July 01, 2020)
+
+BUG FIXES:
+
+- Reverts changes introduced in v2.9.0, deferring to the next major release
+
+## 2.9.0 (June 29, 2020)
+
+**NOTE**: This release introduced a provider-level breaking change around `anonymous` use.
+See [here](https://github.com/integrations/terraform-provider-github/pull/464#discussion_r427961161) for details and [here](https://github.com/integrations/terraform-provider-github/issues/502#issuecomment-652379322) to discuss a fix.
+
+ENHANCEMENTS:
+* Add Ability To Manage Resources For Non-Organization Accounts ([#464](https://github.com/integrations/terraform-provider-github/issues/464))
+* resource/github_repository: Add "internal" Visibility Option ([#454](https://github.com/integrations/terraform-provider-github/issues/454))
+
+## 2.8.1 (June 09, 2020)
+
+BUG FIXES:
+
+* resource/github_repository_file: Reduce API requests when looping through commits ([[#466](https://github.com/integrations/terraform-provider-github/issues/466)])
+* resource/github_repository: Fix `auto_init` Destroying Repositories ([[#317](https://github.com/integrations/terraform-provider-github/issues/317)])
+* resource/github_repository_deploy_key: Fix acceptance test approach ([[#471](https://github.com/integrations/terraform-provider-github/issues/471)])
+* resource/github_actions_secret: Fix Case Where Secret Removed Outside Of Terraform ([[#482](https://github.com/integrations/terraform-provider-github/issues/482)])
+* Documentation Addition Of `examples/` Directory
+
+## 2.8.0 (May 15, 2020)
+
+BUG FIXES:
+
+* resource/github_branch_protection: Prevent enabling `dismissal_restrictions` in GitHub console if `dismissal_users` and `dismissal_teams` are not set ([#453](https://github.com/integrations/terraform-provider-github/issues/453))
+* resource/github_repository_collaborator: Allow modifying permissions from `maintain` and `triage` ([#457](https://github.com/integrations/terraform-provider-github/issues/457))
+* Documentation Fix for `github_actions_public_key` data-source ([#458](https://github.com/integrations/terraform-provider-github/issues/458))
+* Documentation Fix for `github_branch_protection` resource ([#410](https://github.com/integrations/terraform-provider-github/issues/410))
+* Documentation Layout Fix for `github_ip_ranges` and `github_membership` data sources ([#423](https://github.com/integrations/terraform-provider-github/issues/423))
+* Documentation Fix for `github_repository_file` import ([#443](https://github.com/integrations/terraform-provider-github/issues/443))
+* Update `go-github` to `v31.0.0` ([#424](https://github.com/integrations/terraform-provider-github/issues/424))
+
+ENHANCEMENTS:
+* **New Data Source** `github_organization_team_sync_groups` ([#400](https://github.com/integrations/terraform-provider-github/issues/400))
+* **New Resource** `github_team_sync_group_mapping` ([#400](https://github.com/integrations/terraform-provider-github/issues/400))
+
+## 2.7.0 (May 01, 2020)
+
+BUG FIXES:
+
+* Add Missing Acceptance Test ([#427](https://github.com/integrations/terraform-provider-github/issues/427))
+
+ENHANCEMENTS:
+
+* Add GraphQL Client ([#331](https://github.com/integrations/terraform-provider-github/issues/331))
+* **New Data Source** `github_branch` ([#364](https://github.com/integrations/terraform-provider-github/issues/364))
+* **New Resource** `github_branch` ([#364](https://github.com/integrations/terraform-provider-github/issues/364))
+
+
+## 2.6.1 (April 07, 2020)
+
+BUG FIXES:
+
+* Documentation Fix For Option To Manage `Delete Branch on Merge` ([#408](https://github.com/integrations/terraform-provider-github/issues/408))
+* Documentation Fix For `github_actions_secret` / `github_actions_public_key` ([#413](https://github.com/integrations/terraform-provider-github/issues/413))
+
+## 2.6.0 (April 03, 2020)
+
+ENHANCEMENTS:
+
+* resource/github_repository: Introduce Option To Manage `Delete Branch on Merge` ([#399](https://github.com/integrations/terraform-provider-github/issues/399))
+* resource/github_repository: Configure Repository As Template ([#357](https://github.com/integrations/terraform-provider-github/issues/357))
+* **New Data Source** `github_membership` ([#396](https://github.com/integrations/terraform-provider-github/issues/396))
+
+## 2.5.1 (April 02, 2020)
+
+BUG FIXES:
+
+* Fix Broken Link For `github_actions_secret` Documentation ([#405](https://github.com/integrations/terraform-provider-github/issues/405))
+
+## 2.5.0 (March 30, 2020)
+
+REGRESSION:
+
+* `go-github` `v29.03` is incompatible with versions of GitHub Enterprise Server prior to `v2.21.5`. ([[#404](https://github.com/integrations/terraform-provider-github/issues/404)])
+
+ENHANCEMENTS:
+
+* Add `apps` To `github_branch_protection` Restrictions
+* **New Data Source** `github_actions_public_key` ([[#362](https://github.com/integrations/terraform-provider-github/issues/362)])
+* **New Data Source** `github_actions_secrets` ([[#362](https://github.com/integrations/terraform-provider-github/issues/362)])
+* **New Resource:** `github_actions_secret` ([[#362](https://github.com/integrations/terraform-provider-github/issues/362)])
+
+BUG FIXES:
+
+* Prevent Panic From DismissalRestrictions ([[#385](https://github.com/integrations/terraform-provider-github/issues/385)])
+* Update `go-github` to `v29.0.3` ([[#369](https://github.com/integrations/terraform-provider-github/issues/369)])
+* Update `go` to `1.13` ([[#372](https://github.com/integrations/terraform-provider-github/issues/372)])
+* Documentation Fixes For Consistency And Typography
+
+
+## 2.4.1 (March 05, 2020)
+
+BUG FIXES:
+
+* Updates `go-github` to `v29` to unblock planned feature development ([#342](https://github.com/integrations/terraform-provider-github/issues/342))
+* Fixes `insecure_ssl` parameter behaviour for `github_organization_webhook` and `github_repository_webhook` ([#365](https://github.com/integrations/terraform-provider-github/issues/365))
+* Fixes label behaviour to not create new labels when renaming a `github_issue_label` ([#288](https://github.com/integrations/terraform-provider-github/issues/288))
+
+## 2.4.0 (February 26, 2020)
+
+ENHANCEMENTS:
+
+* **New Data Source** `github_release` ([#356](https://github.com/integrations/terraform-provider-github/pull/356))
+
+* **New Resource:** `github_repository_file` ([#318](https://github.com/integrations/terraform-provider-github/pull/318))
+
+## 2.3.2 (February 05, 2020)
+
+BUG FIXES:
+
+* Handle repository 404 for `github_repository_collaborator` resource ([#348](https://github.com/integrations/terraform-provider-github/issues/348))
+
+## 2.3.1 (January 27, 2020)
+
+BUG FIXES:
+
+* Add support for `triage` and `maintain` permissions in some resources ([#303](https://github.com/integrations/terraform-provider-github/issues/303))
+
+## 2.3.0 (January 22, 2020)
+
+BUG FIXES:
+
+* `resource/resource_github_team_membership`: Prevent spurious diffs caused by upstream API change made on 17th January ([#325](https://github.com/integrations/terraform-provider-github/issues/325))
+
+ENHANCEMENTS:
+
+* `resource/repository`: Added functionality to generate a new repository from a Template Repository ([#309](https://github.com/integrations/terraform-provider-github/issues/309))
+
+## 2.2.1 (September 04, 2019)
+
+ENHANCEMENTS:
+
+* dependencies: Updated module `hashicorp/terraform` to `v0.12.7` ([#273](https://github.com/integrations/terraform-provider-github/issues/273))
+* `resource/github_branch_protection`: Will now return an error when users are not correctly added ([#158](https://github.com/integrations/terraform-provider-github/issues/158))
+* `provider`: Added optional `anonymous` attribute, and made `token` optional ([#255](https://github.com/integrations/terraform-provider-github/issues/255))
+
+BUG FIXES:
+* `resource/github_repository`: Allow setting `default_branch` to `master` on creation ([#150](https://github.com/integrations/terraform-provider-github/issues/150))
+* `resource/github_team_repository`: Validation of `team_id` ([#253](https://github.com/integrations/terraform-provider-github/issues/253))
+* `resource/github_team_membership`: Validation of `team_id` ([#253](https://github.com/integrations/terraform-provider-github/issues/253))
+* `resource/github_organization_webhook`: Properly set webhook secret in state ([#251](https://github.com/integrations/terraform-provider-github/issues/251))
+* `resource/github_repository_webhook`: Properly set webhook secret in state ([#251](https://github.com/integrations/terraform-provider-github/issues/251))
+
+## 2.2.0 (June 28, 2019)
+
+FEATURES:
+
+* **New Data Source** `github_collaborators` ([#239](https://github.com/integrations/terraform-provider-github/issues/239))
+
+ENHANCEMENTS:
+
+* `provider`: Added optional `individual` attribute, and made `organization` optional ([#242](https://github.com/integrations/terraform-provider-github/issues/242))
+* `resource/github_branch_protection`: Added `require_signed_commits` property ([#214](https://github.com/integrations/terraform-provider-github/issues/214))
+
+BUG FIXES:
+
+* `resource/github_membership`: `username` property is now case insensitive ([#241](https://github.com/integrations/terraform-provider-github/issues/241))
+* `resource/github_repository`: `has_projects` can now be imported ([#237](https://github.com/integrations/terraform-provider-github/issues/237))
+* `resource/github_repository_collaborator`: `username` property is now case insensitive [[#241](https://github.com/integrations/terraform-provider-github/issues/241))
+* `resource/github_team_membership`: `username` property is now case insensitive ([#241](https://github.com/integrations/terraform-provider-github/issues/241))
+
+
+## 2.1.0 (May 15, 2019)
+
+ENHANCEMENTS:
+
+* `resource/github_repository`: Added validation for lowercase topics ([#223](https://github.com/integrations/terraform-provider-github/issues/223))
+* `resource/github_organization_webhook`: Added back removed `name` attribute, `name` is now flagged as `Removed` ([#226](https://github.com/integrations/terraform-provider-github/issues/226))
+* `resource/github_repository_webhook`: Added back removed `name` attribute, `name` is now flagged as `Removed` ([#226](https://github.com/integrations/terraform-provider-github/issues/226))
+
+## 2.0.0 (May 02, 2019)
+
+* This release adds support for Terraform 0.12 ([#181](https://github.com/integrations/terraform-provider-github/issues/181))
+
+BREAKING CHANGES:
+
+* `resource/github_repository_webhook`: Removed `name` attribute ([#181](https://github.com/integrations/terraform-provider-github/issues/181))
+* `resource/github_organization_webhook`: Removed `name` attribute ([#181](https://github.com/integrations/terraform-provider-github/issues/181))
+
+FEATURES:
+
+* **New Resource:** `github_organization_block` ([#181](https://github.com/integrations/terraform-provider-github/issues/181))
+* **New Resource:** `github_user_invitation_accepter` ([#161](https://github.com/integrations/terraform-provider-github/issues/161))
+* `resource/github_branch_protection`: Added `required_approving_review_count` property ([#181](https://github.com/integrations/terraform-provider-github/issues/181))
+
+BUG FIXES:
+
+* `resource/github_repository`: Prefill `auto_init` during import ([#154](https://github.com/integrations/terraform-provider-github/issues/154))
+
+## 1.3.0 (September 07, 2018)
+
+FEATURES:
+
+* **New Resource:** `github_project_column` ([#139](https://github.com/integrations/terraform-provider-github/issues/139))
+
+ENHANCEMENTS:
+
+* _all resources_: Use `Etag` to save API quota (~ 33%) ([#143](https://github.com/integrations/terraform-provider-github/issues/143))
+* _all resources_: Implement & use RateLimitTransport to avoid hitting API rate limits ([#145](https://github.com/integrations/terraform-provider-github/issues/145))
+
+BUG FIXES:
+
+* `resource/github_issue_label`: Return genuine errors instead of ignoring them when reading existing resource ([#142](https://github.com/integrations/terraform-provider-github/issues/142))
+* `resource/github_membership`: Return genuine errors instead of ignoring them when reading existing resource ([#142](https://github.com/integrations/terraform-provider-github/issues/142))
+* `resource/github_repository_deploy_key`: Return genuine errors instead of ignoring them when reading existing resource ([#142](https://github.com/integrations/terraform-provider-github/issues/142))
+* `resource/github_team`: Return genuine errors instead of ignoring them when reading existing resource ([#142](https://github.com/integrations/terraform-provider-github/issues/142))
+* `resource/github_team_membership`: Return genuine errors instead of ignoring them when reading existing resource ([#142](https://github.com/integrations/terraform-provider-github/issues/142))
+* `resource/github_team_repository`: Return genuine errors instead of ignoring them when reading existing resource ([#142](https://github.com/integrations/terraform-provider-github/issues/142))
+* `resource/github_user_gpg_key`: Return genuine errors instead of ignoring them when reading existing resource ([#142](https://github.com/integrations/terraform-provider-github/issues/142))
+
+## 1.2.1 (August 17, 2018)
+
+BUG FIXES:
+
+* `resource/github_repository`: Avoid spurious diff for `topics` ([#138](https://github.com/integrations/terraform-provider-github/issues/138))
+
+## 1.2.0 (August 17, 2018)
+
+FEATURES:
+
+* **New Data Source:** `github_repository` ([#109](https://github.com/integrations/terraform-provider-github/issues/109))
+* **New Data Source:** `github_repositories` ([#129](https://github.com/integrations/terraform-provider-github/issues/129))
+* **New Resource:** `github_organization_project` ([#111](https://github.com/integrations/terraform-provider-github/issues/111))
+* **New Resource:** `github_repository_project` ([#115](https://github.com/integrations/terraform-provider-github/issues/115))
+* **New Resource:** `github_user_gpg_key` ([#120](https://github.com/integrations/terraform-provider-github/issues/120))
+* **New Resource:** `github_user_ssh_key` ([#119](https://github.com/integrations/terraform-provider-github/issues/119))
+
+ENHANCEMENTS:
+
+* `provider`: Add `insecure` mode ([#48](https://github.com/integrations/terraform-provider-github/issues/48))
+* `data-source/github_ip_ranges`: Add importer IPs ([#100](https://github.com/integrations/terraform-provider-github/issues/100))
+* `resource/github_issue_label`: Add support for `description` ([#118](https://github.com/integrations/terraform-provider-github/issues/118))
+* `resource/github_repository`: Add support for `topics` ([#97](https://github.com/integrations/terraform-provider-github/issues/97))
+* `resource/github_team`: Expose `slug` ([#136](https://github.com/integrations/terraform-provider-github/issues/136))
+* `resource/github_team_membership`: Make role updatable ([#137](https://github.com/integrations/terraform-provider-github/issues/137))
+
+BUG FIXES:
+
+* `resource/github_*`: Prevent crashing on invalid ID format ([#108](https://github.com/integrations/terraform-provider-github/issues/108))
+* `resource/github_organization_webhook`: Avoid spurious diff of `secret` ([#134](https://github.com/integrations/terraform-provider-github/issues/134))
+* `resource/github_repository`: Make non-updatable fields `ForceNew` ([#135](https://github.com/integrations/terraform-provider-github/issues/135))
+* `resource/github_repository_deploy_key`: Avoid spurious diff of `key` ([#132](https://github.com/integrations/terraform-provider-github/issues/132))
+* `resource/github_repository_webhook`: Avoid spurious diff of `secret` ([#133](https://github.com/integrations/terraform-provider-github/issues/133))
+
+
+## 1.1.0 (May 11, 2018)
+
+FEATURES:
+
+* **New Data Source:** `github_ip_ranges` ([#82](https://github.com/integrations/terraform-provider-github/issues/82))
+
+ENHANCEMENTS:
+
+* `resource/github_repository`: Add support for archiving ([#64](https://github.com/integrations/terraform-provider-github/issues/64))
+* `resource/github_repository`: Add `html_url` ([#93](https://github.com/integrations/terraform-provider-github/issues/93))
+* `resource/github_repository`: Add `has_projects` ([#92](https://github.com/integrations/terraform-provider-github/issues/92))
+* `resource/github_team`: Add `parent_team_id` ([#54](https://github.com/integrations/terraform-provider-github/issues/54))
+
+## 1.0.0 (February 20, 2018)
+
+ENHANCEMENTS:
+
+* `resource/github_branch_protection`: Add support for `require_code_owners_review` ([#51](https://github.com/integrations/terraform-provider-github/issues/51))
+
+## 0.1.2 (February 12, 2018)
+
+BUG FIXES:
+
+* `resource/github_membership`: Fix a crash when bad import input is given ([#72](https://github.com/integrations/terraform-provider-github/issues/72))
+
+## 0.1.1 (July 18, 2017)
+
+BACKWARDS INCOMPATIBILITIES / NOTES:
+
+* `resource/github_branch_protection`: The `include_admin` attributes haven't been working for quite some time due to upstream API changes. These attributes are now deprecated in favor of the new top-level `enforce_admins` attribute. The `include_admin` attributes currently have no affect on the resource, and will yield a `DEPRECATED` notice to the user.
+
+IMPROVEMENTS:
+
+* `resource/github_repository`: Allow updating default_branch ([#23](https://github.com/integrations/terraform-provider-github/issues/23))
+* `resource/github_repository`: Add license_template and gitignore_template ([#24](https://github.com/integrations/terraform-provider-github/issues/24))
+* `resource/github_repository_webhook`: Add import ([#29](https://github.com/integrations/terraform-provider-github/issues/29))
+* `resource/github_branch_protection`: Support enforce_admins ([#26](https://github.com/integrations/terraform-provider-github/issues/26))
+* `resource/github_team`: Supports managing a team's LDAP DN in GitHub Enterprise ([#39](https://github.com/integrations/terraform-provider-github/issues/39))
+
+BUG FIXES:
+
+* `resource/github_branch_protection`: Fix crash on nil values ([#26](https://github.com/integrations/terraform-provider-github/issues/26))
+
+## 0.1.0 (June 20, 2017)
+
+FEATURES:
+
+* **New Resource:** `github_repository_deploy_key` [[#15215](https://github.com/integrations/terraform-provider-github/issues/15215)](https://github.com/hashicorp/terraform/pull/15215)
+
+IMPROVEMENTS:
+
+* `resource/github_repository`: Adding merge types ([#1](https://github.com/integrations/terraform-provider-github/issues/1))
+* `data-source/github_user` and `data-source/github_team`: Added attributes ([#2](https://github.com/integrations/terraform-provider-github/issues/2))
diff --git a/terraform/.terraform/providers/registry.terraform.io/integrations/github/6.6.0/darwin_arm64/LICENSE b/terraform/.terraform/providers/registry.terraform.io/integrations/github/6.6.0/darwin_arm64/LICENSE
new file mode 100644
index 0000000000..b50625eb63
--- /dev/null
+++ b/terraform/.terraform/providers/registry.terraform.io/integrations/github/6.6.0/darwin_arm64/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2020 GitHub
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/terraform/.terraform/providers/registry.terraform.io/integrations/github/6.6.0/darwin_arm64/README.md b/terraform/.terraform/providers/registry.terraform.io/integrations/github/6.6.0/darwin_arm64/README.md
new file mode 100644
index 0000000000..00b3a97458
--- /dev/null
+++ b/terraform/.terraform/providers/registry.terraform.io/integrations/github/6.6.0/darwin_arm64/README.md
@@ -0,0 +1,29 @@
+Terraform Provider GitHub
+=========================
+
+
+
+
+
+This project is used to manipulate GitHub resources (repositories, teams, files, etc.) using Terraform. Its Terraform Registry page can be found [here](https://registry.terraform.io/providers/integrations/github/).
+
+## Requirements
+
+- [Terraform](https://www.terraform.io/downloads.html) 0.10.x
+- [Go](https://golang.org/doc/install) 1.19.x (to build the provider plugin)
+
+## Usage
+
+Detailed documentation for the GitHub provider can be found [here](https://registry.terraform.io/providers/integrations/github).
+
+## Contributing
+
+Detailed documentation for contributing to the GitHub provider can be found [here](CONTRIBUTING.md).
+
+## Roadmap
+
+This project uses [Milestones](https://github.com/integrations/terraform-provider-github/milestones) to scope upcoming features and bug fixes. Issues that receive the most recent discussion or the most reactions will be more likely to be included in an upcoming release.
+
+## Support
+
+This is a community-supported project. GitHub's SDK team triages issues and PRs each Monday and Friday. Please engage with the community via Issues for support, and PRs are always welcome!
diff --git a/terraform/.terraform/providers/registry.terraform.io/integrations/github/6.6.0/darwin_arm64/terraform-provider-github_v6.6.0 b/terraform/.terraform/providers/registry.terraform.io/integrations/github/6.6.0/darwin_arm64/terraform-provider-github_v6.6.0
new file mode 100755
index 0000000000..c8fea23553
Binary files /dev/null and b/terraform/.terraform/providers/registry.terraform.io/integrations/github/6.6.0/darwin_arm64/terraform-provider-github_v6.6.0 differ
diff --git a/terraform/.terraform/providers/registry.terraform.io/jfrog/platform/2.2.1/darwin_arm64/CHANGELOG.md b/terraform/.terraform/providers/registry.terraform.io/jfrog/platform/2.2.1/darwin_arm64/CHANGELOG.md
new file mode 100644
index 0000000000..3c05fcc87b
--- /dev/null
+++ b/terraform/.terraform/providers/registry.terraform.io/jfrog/platform/2.2.1/darwin_arm64/CHANGELOG.md
@@ -0,0 +1,283 @@
+## 2.2.1 (January 8, 2025). Tested on Artifactory 7.98.13 with Terraform 1.10.3 and OpenTofu 1.8.8
+
+BUG FIXES:
+
+* resource/platform_reverse_proxy: Fix validation for optional attributes not working for variables. Issue: [#186](https://github.com/jfrog/terraform-provider-platform/issues/186) PR: [#188](https://github.com/jfrog/terraform-provider-platform/pull/188)
+
+## 2.2.0 (January 3, 2025). Tested on Artifactory 7.98.12 with Terraform 1.10.3 and OpenTofu 1.8.8
+
+FEATURES:
+
+**New Resource:**
+
+* `platform_group_members` - Resource to manage group membership. Issue: [#169](https://github.com/jfrog/terraform-provider-platform/issues/169) PR: [#187](https://github.com/jfrog/terraform-provider-platform/pull/187)
+
+IMPROVEMENTS:
+
+* resource/platform_group: Add `use_group_members_resource` attribute to control if the resource uses `members` attribute or not. Issue: [#169](https://github.com/jfrog/terraform-provider-platform/issues/169) PR: [#187](https://github.com/jfrog/terraform-provider-platform/pull/187)
+
+## 2.1.0 (December 20, 2024). Tested on Artifactory 7.98.11 with Terraform 1.10.3 and OpenTofu 1.8.7
+
+FEATURES:
+
+**New Resource:**
+
+* `platform_http_sso_settings` - Resource to manage HTTP SSO settings. PR: [#185](https://github.com/jfrog/terraform-provider-platform/pull/185)
+
+## 2.0.0 (December 18, 2024). Tested on Artifactory 7.98.11 with Terraform 1.10.2 and OpenTofu 1.8.7
+
+NOTES:
+
+* provider: Deprecated attributes `check_license` and `myjfrog_api_token` are removed.
+* resource/platform_myjfrog_ip_allowlist: Deprecated resource is removed.
+* resource/platform_saml_settings: Deprecated attribute `no_auto_user_creation` is removed.
+
+IMPROVEMENTS:
+
+* resource/platform_oidc_configuration: Add `use_default_proxy` attribute to support the use of default proxy configuration.
+
+PR: [#181](https://github.com/jfrog/terraform-provider-platform/pull/181)
+
+## 1.19.1 (December 10, 2024). Tested on Artifactory 7.98.10 with Terraform 1.10.1 and OpenTofu 1.8.7
+
+BUG FIXES:
+
+* resource/platform_group: Fix "Provider produced inconsistent result after apply" error for attribute `members`. Issue: [#176](https://github.com/jfrog/terraform-provider-platform/issues/176) PR: [#177](https://github.com/jfrog/terraform-provider-platform/pull/177)
+
+## 1.19.0 (December 3, 2024). Tested on Artifactory 7.98.9 with Terraform 1.10.0 and OpenTofu 1.8.6
+
+FEATURES:
+
+**New Resource:**
+
+* `platform_crowd_settings` - Resource to manage Crowd/JIRA authentication provider. PR: [#167](https://github.com/jfrog/terraform-provider-platform/pull/167)
+
+BUG FIXES:
+
+* resource/platform_saml_settings: Fix `Value Conversion Error` for attribute `ldap_group_settings`. Issue: [#168](https://github.com/jfrog/terraform-provider-platform/issues/168) PR: [#171](https://github.com/jfrog/terraform-provider-platform/pull/171)
+
+## 1.18.2 (November 27, 2024). Tested on Artifactory 7.98.9 with Terraform 1.9.8 and OpenTofu 1.8.6
+
+BUG FIXES:
+
+* resource/platform_permission: Fix permission resource not being deleted correctly. Permission resources that were in the Terraform state from previously apply but now are removed from the plan were not deleted. Now we check for the removal and delete the permission resource correctly. Issue: [#141](https://github.com/jfrog/terraform-provider-platform/issues/141) PR: [#165](https://github.com/jfrog/terraform-provider-platform/pull/165)
+
+## 1.18.1 (November 26, 2024). Tested on Artifactory 7.98.9 with Terraform 1.9.8 and OpenTofu 1.8.6
+
+BUG FIXES:
+
+* resource/platform_oidc_configuration: Update validation for `issuer` attribute to support GitHub actions customization for enterprise. See [Customizing the issuer value for an enterprise](https://docs.github.com/en/enterprise-cloud@latest/actions/security-for-github-actions/security-hardening-your-deployments/about-security-hardening-with-openid-connect#customizing-the-issuer-value-for-an-enterprise). PR: [#163](https://github.com/jfrog/terraform-provider-platform/pull/163) and [#164](https://github.com/jfrog/terraform-provider-platform/pull/164)
+
+## 1.18.0 (November 21, 2024). Tested on Artifactory 7.98.8 with Terraform 1.9.8 and OpenTofu 1.8.5
+
+IMPROVEMENTS:
+
+* resource/platform_saml_settings: Add `ldap_group_settings` attribute to support LDAP groups synchronization. Issue: [#154](https://github.com/jfrog/terraform-provider-platform/issues/154) PR: [#158](https://github.com/jfrog/terraform-provider-platform/pull/158)
+
+## 1.17.0 (November 15, 2024). Tested on Artifactory 7.98.8 with Terraform 1.9.8 and OpenTofu 1.8.5
+
+FEATURES:
+
+**New Resource:**
+
+* `platform_group` - Resource to manage Group, using [Platform API](https://jfrog.com/help/r/jfrog-rest-apis/groups). This replaces the `artifactory_group` resource in [Artifactory provider](https://registry.terraform.io/providers/jfrog/artifactory/latest/docs/resources/group), which uses the (deprecated) Artifactory Security API. PR: [#155](https://github.com/jfrog/terraform-provider-platform/pull/155)
+
+## 1.16.0 (November 1, 2024). Tested on Artifactory 7.98.7 with Terraform 1.9.8 and OpenTofu 1.8.4
+
+IMPROVEMENTS:
+
+* resource/platform_oidc_identity_mapping: Add `username_pattern` and `groups_pattern` attributes to username and groups patterns. Attribute `scope` is now optional to support patterns. Issue: [#145](https://github.com/jfrog/terraform-provider-platform/issues/145) PR: [#147](https://github.com/jfrog/terraform-provider-platform/pull/147)
+
+## 1.15.1 (October 18, 2024). Tested on Artifactory 7.90.14 with Terraform 1.9.8 and OpenTofu 1.8.3
+
+IMPROVEMENTS:
+
+* resource/artifactory_local_repository_multi_replication: Update validation for `actions.users` and `actions.groups` attributes to allow empty list. Issue: [#142](https://github.com/jfrog/terraform-provider-platform/issues/142) PR: [#143](https://github.com/jfrog/terraform-provider-platform/pull/143)
+
+## 1.15.0 (October 16, 2024). Tested on Artifactory 7.90.14 with Terraform 1.9.7 and OpenTofu 1.8.3
+
+IMPROVEMENTS:
+
+* provider: Add `tfc_credential_tag_name` configuration attribute to support use of different/[multiple Workload Identity Token in Terraform Cloud Platform](https://developer.hashicorp.com/terraform/cloud-docs/workspaces/dynamic-provider-credentials/manual-generation#generating-multiple-tokens). Issue: [#68](https://github.com/jfrog/terraform-provider-shared/issues/68) PR: [#139](https://github.com/jfrog/terraform-provider-platform/pull/139)
+
+## 1.14.0 (October 11, 2024). Tested on Artifactory 7.90.14 with Terraform 1.9.7 and OpenTofu 1.8.3
+
+IMPROVEMENTS:
+
+* resource/platform_oidc_configuration: Add `project_key` attribute to support project scope OIDC configuration.
+* resource/platform_oidc_identity_mapping: Add `project_key` attribute to support project scope OIDC identity mapping.
+* resource/platform_oidc_identity_mapping: Add support for `applied-permissions/roles` to `scope` attribute to support project role scope.
+
+PR: [#137](https://github.com/jfrog/terraform-provider-platform/pull/137) and [#138](https://github.com/jfrog/terraform-provider-platform/pull/138)
+
+## 1.13.1 (October 8, 2024). Tested on Artifactory 7.90.13 with Terraform 1.9.7 and OpenTofu 1.8.3
+
+BUG FIXES:
+
+* resource/platform_saml_settings: Fix `certificate` attribute not being set as 'sensitive' so its value is redacted in CLI output/log. Issue: [#135](https://github.com/jfrog/terraform-provider-platform/issues/135) PR: [#136](https://github.com/jfrog/terraform-provider-platform/pull/136)
+
+## 1.13.0 (October 4, 2024). Tested on Artifactory 7.90.13 with Terraform 1.9.7 and OpenTofu 1.8.3
+
+NOTES:
+
+* resource/platform_saml_settings: `no_auto_user_creation` attribute is being deprecated in favor of `auto_user_creation`.
+
+BUG FIXES:
+
+* resource/platform_saml_settings: Fix `no_auto_user_creation` attribute has no effect. Replace it with new attribute `auto_user_creation` to match SAML Settings in the UI and REST API. Issue: [#133](https://github.com/jfrog/terraform-provider-platform/issues/133) PR: [#134](https://github.com/jfrog/terraform-provider-platform/pull/134)
+
+## 1.12.0 (September 16, 2024). Tested on Artifactory 7.90.10 with Terraform 1.9.5 and OpenTofu 1.8.2
+
+FEATURES:
+
+**New Resource:**
+* `platform_aws_iam_role` - Resource to manage AWS IAM role. PR: [#125](https://github.com/jfrog/terraform-provider-platform/pull/125)
+
+## 1.11.1 (September 9, 2024). Tested on Artifactory 7.90.9 with Terraform 1.9.5 and OpenTofu 1.8.2
+
+IMPROVEMENTS:
+
+* resource/platform_workers_service: Replace beta warning message in documentation with GA note. PR: [#124](https://github.com/jfrog/terraform-provider-platform/pull/124)
+
+## 1.11.0 (August 12, 2024). Tested on Artifactory 7.90.7 with Terraform 1.9.4 and OpenTofu 1.8.1
+
+FEATURES:
+
+**New Resource:**
+* `platform_saml_settings` - Resource to manage SAML SSO settings. PR: [#118](https://github.com/jfrog/terraform-provider-platform/pull/118)
+* `platform_scim_user` - Resource to manage SCIM user. PR: [#120](https://github.com/jfrog/terraform-provider-platform/pull/120)
+* `platform_scim_group` - Resource to manage SCIM group. PR: [#120](https://github.com/jfrog/terraform-provider-platform/pull/120)
+
+## 1.10.0 (July 21, 2024). Tested on Artifactory 7.84.17 with Terraform 1.9.2 and OpenTofu 1.7.3
+
+NOTES:
+
+* provider: Attribute `myjfrog_api_token` is being deprecated. Issue: [#99](https://github.com/jfrog/terraform-provider-platform/issues/99) PR: [#114](https://github.com/jfrog/terraform-provider-platform/pull/114)
+* resource/platform_myjfrog_ip_allowlist is being deprecated and is moved to new [MyJFrog provider](https://registry.terraform.io/providers/jfrog/myjfrog/latest). Use the `myjfrog_ip_allowlist` resource there instead. Issue: [#99](https://github.com/jfrog/terraform-provider-platform/issues/99 PR: [#113](https://github.com/jfrog/terraform-provider-platform/pull/113)
+
+## 1.9.0 (July 19, 2024). Tested on Artifactory 7.84.17 with Terraform 1.9.2 and OpenTofu 1.7.3
+
+IMPROVEMENTS:
+
+* resource/platform_oidc_configuration: Add `Azure` option for `provider_type` attribute. PR: [#112](https://github.com/jfrog/terraform-provider-platform/pull/112)
+
+## 1.8.2 (July 16, 2024). Tested on Artifactory 7.84.17 with Terraform 1.9.2 and OpenTofu 1.7.3
+
+BUG FIXES:
+
+* resource/platform_global_role, resource/platform_oidc_configuration, resource/platform_oidc_identity_mapping, resource/platform_permission, resource/platform_reverse_proxy, resource/platform_workers_service: Fix incorrect API error handling. Issue: [#104](https://github.com/jfrog/terraform-provider-platform/issues/104) PR: [#105](https://github.com/jfrog/terraform-provider-platform/pull/105)
+
+## 1.8.1 (July 3, 2024). Tested on Artifactory 7.84.16 with Terraform 1.9.1 and OpenTofu 1.7.2
+
+BUG FIXES:
+
+* resource/platform_oidc_configuration: Fix `provider_type` attribute value stored incorrectly when resource is imported. Issue: [#102](https://github.com/jfrog/terraform-provider-platform/issues/102) PR: [#103](https://github.com/jfrog/terraform-provider-platform/pull/103)
+
+## 1.8.0 (June 20, 2024). Tested on Artifactory 7.84.15 with Terraform 1.8.5 and OpenTofu 1.7.2
+
+NOTES:
+
+* provider: `check_license` attribute is deprecated and provider no longer checks Artifactory license during initialization. It will be removed in the next major version release.
+
+BUG FIXES:
+
+* provider: Fix incomplete provider initialization if Artifactory version check fails.
+
+IMPROVEMENTS:
+
+* provider: Now allows JFrog Access Token to be unset (i.e. MyJFrog API token is set and only `platform_myjfrog_ip_allowlist` resource is used). Warning message is displayed when either token is not set.
+
+Issue: [#87](https://github.com/jfrog/terraform-provider-platform/issues/87) PR: [#97](https://github.com/jfrog/terraform-provider-platform/pull/97)
+
+## 1.7.4 (May 8, 2024). Tested on Artifactory 7.84.14 with Terraform 1.8.4 and OpenTofu 1.7.2
+
+BUG FIXES:
+
+* resource/platform_permission: Fix state upgrader crash when upgrading from 1.7.2 to 1.7.3 with no `groups` or `users` attribute set. Issue: [#75](https://github.com/jfrog/terraform-provider-platform/issues/75) PR: [#76](https://github.com/jfrog/terraform-provider-platform/pull/76)
+
+## 1.7.3 (May 7, 2024)
+
+BUG FIXES:
+
+* resource/platform_oidc_configuration: Remove trailing slash from GitHub provider URL validation. Issue: [#71](https://github.com/jfrog/terraform-provider-platform/issues/71) PR: [#72](https://github.com/jfrog/terraform-provider-platform/pull/72)
+* resource/platform_permission: Fix state drift when `*.actions.users` or `*.actions.groups` are set to empty set (`[]`). These 2 attributes now must either be `null`/not set, or a set of at least 1 item. Existing Terraform state with `[]` should be migrated to `null` automatically by provider. Issue: [#70](https://github.com/jfrog/terraform-provider-platform/issues/70) PR: [#73](https://github.com/jfrog/terraform-provider-platform/pull/73)
+
+## 1.7.2 (May 1, 2024)
+
+BUG FIXES:
+
+* resource/platform_permission: Make `name` attribute trigger resource replacement if changed. Issue: [#64](https://github.com/jfrog/terraform-provider-platform/issues/64) PR: [#66](https://github.com/jfrog/terraform-provider-platform/pull/66)
+
+## 1.7.1 (Apr 15, 2024)
+
+BUG FIXES:
+
+* provider: Fix crashes when `url` attribute is used to set JFrog platform URL (vs env var). Issue: [#57](https://github.com/jfrog/terraform-provider-platform/issues/57) PR: [#58](https://github.com/jfrog/terraform-provider-platform/pull/58)
+
+## 1.7.0 (Apr 12, 2024)
+
+FEATURES:
+
+* provider: Add support for Terraform Cloud Workload Identity Token. Issue: [#30](https://github.com/jfrog/terraform-provider-platform/issues/30) PR: [#54](https://github.com/jfrog/terraform-provider-platform/pull/54)
+
+## 1.6.0 (Apr 5, 2024)
+
+FEATURES:
+
+* **New Resource:** `platform_myjfrog_ip_allowlist`: Resource to manage MyJFrog IP allowlist. PR: [#50](https://github.com/jfrog/terraform-provider-platform/pull/50) Issue: [#27](https://github.com/jfrog/terraform-provider-platform/issues/27)
+
+## 1.5.1 (Apr 3, 2024)
+
+BUG FIXES:
+
+* resource/platform_permission: Update documentation for target `name` attribute for `ANY` repository types. Correct values should be `ANY LOCAL`, `ANY REMOTE`, or `ANY DISTRIBUTION`. Note the removal of underscore character. Issue: [#48](https://github.com/jfrog/terraform-provider-platform/issues/48) PR: [#49](https://github.com/jfrog/terraform-provider-platform/pull/49)
+
+## 1.5.0 (Mar 26, 2024)
+
+FEATURES:
+
+* **New Resource:** `platform_oidc_configuration` and `platform_oidc_identity_mapping`: PR: [#47](https://github.com/jfrog/terraform-provider-platform/pull/47) Issue: [#26](https://github.com/jfrog/terraform-provider-platform/issues/26), [#29](https://github.com/jfrog/terraform-provider-platform/issues/29), [#31](https://github.com/jfrog/terraform-provider-platform/issues/31), [#38](https://github.com/jfrog/terraform-provider-platform/issues/38)
+
+## 1.4.1 (Mar 18, 2024)
+
+BUG FIXES:
+
+* Fix HTTP response error handling due to change of behavior (for better consistency) from Resty client. PR: [#42](https://github.com/jfrog/terraform-provider-platform/pull/42)
+
+## 1.4.0 (Mar 6, 2024)
+
+FEATURES:
+
+* **New Resource:** `platform_global_role`: PR: [#35](https://github.com/jfrog/terraform-provider-platform/pull/35)
+
+## 1.3.0 (Feb 29, 2024)
+
+FEATURES:
+
+* **New Resource:** `platform_permission`: PR: [#33](https://github.com/jfrog/terraform-provider-platform/pull/33) Issue: [#32](https://github.com/jfrog/terraform-provider-platform/issues/32)
+
+## 1.2.0 (Jan 4, 2024). Tested on Artifactory 7.71.11 with Terraform CLI v1.6.6
+
+FEATURES:
+
+* **New Resource:** `platform_license`: PR: [#20](https://github.com/jfrog/terraform-provider-platform/pull/20) Issue: [#12](https://github.com/jfrog/terraform-provider-platform/issues/12)
+
+## 1.1.0 (Dec 14, 2023). Tested on Artifactory 7.71.10 with Terraform CLI v1.6.6
+
+FEATURES:
+
+* **New Resource:** `platform_reverse_proxy`: PR: [#13](https://github.com/jfrog/terraform-provider-platform/pull/13) Issue: [#11](https://github.com/jfrog/terraform-provider-platform/issues/11)
+
+## 1.0.1 (Nov 28, 2023). Tested on Artifactory 7.71.5 with Terraform CLI v1.6.4
+
+IMPROVEMENTS:
+
+* Bump github.com/hashicorp/terraform-plugin-go from 0.19.0 to 0.19.1: PR: [6](https://github.com/jfrog/terraform-provider-platform/pull/6)
+* Bump github.com/hashicorp/terraform-plugin-testing from 1.5.0 to 1.5.1: PR: [5](https://github.com/jfrog/terraform-provider-platform/pull/5)
+* Bump github.com/go-resty/resty/v2 from 2.7.0 to 2.10.0: PR: [4](https://github.com/jfrog/terraform-provider-platform/pull/4)
+
+## 1.0.0 (Nov 27, 2023)
+
+FEATURES:
+
+* **New Resource:** `platform_workers_service`: PR: [#2](https://github.com/jfrog/terraform-provider-platform/pull/2)
diff --git a/terraform/.terraform/providers/registry.terraform.io/jfrog/platform/2.2.1/darwin_arm64/LICENSE b/terraform/.terraform/providers/registry.terraform.io/jfrog/platform/2.2.1/darwin_arm64/LICENSE
new file mode 100644
index 0000000000..8821a5f196
--- /dev/null
+++ b/terraform/.terraform/providers/registry.terraform.io/jfrog/platform/2.2.1/darwin_arm64/LICENSE
@@ -0,0 +1,201 @@
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright 2020 JFrog Ltd
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff --git a/terraform/.terraform/providers/registry.terraform.io/jfrog/platform/2.2.1/darwin_arm64/README.md b/terraform/.terraform/providers/registry.terraform.io/jfrog/platform/2.2.1/darwin_arm64/README.md
new file mode 100644
index 0000000000..1cd106e8d6
--- /dev/null
+++ b/terraform/.terraform/providers/registry.terraform.io/jfrog/platform/2.2.1/darwin_arm64/README.md
@@ -0,0 +1,111 @@
+[](https://github.com/jfrog/terraform-provider-platform/actions/workflows/acceptance-tests.yml)
+
+# Terraform Provider for JFrog Platform
+
+## Quick Start
+
+Create a new Terraform file with `platform` resource. Also see [sample.tf](./sample.tf):
+
+### HCL Example
+
+```terraform
+# Required for Terraform 1.0 and later
+terraform {
+ required_providers {
+ artifactory = {
+ source = "registry.terraform.io/jfrog/artifactory"
+ version = "12.7.1"
+ }
+ platform = {
+ source = "registry.terraform.io/jfrog/platform"
+ version = "2.2.0"
+ }
+ }
+}
+
+provider "artifactory" {
+ // supply JFROG_URL and JFROG_ACCESS_TOKEN as env vars
+}
+
+provider "platform" {
+ // supply JFROG_URL and JFROG_ACCESS_TOKEN as env vars
+}
+
+resource "artifactory_local_generic_repository" "my-generic-local" {
+ key = "my-generic-local"
+}
+
+resource "platform_workers_service" "my-workers-service" {
+ key = "my-workers-service"
+ enabled = true
+ description = "My workers service"
+ source_code = "export default async (context: PlatformContext, data: BeforeDownloadRequest): Promise => { console.log(await context.clients.platformHttp.get('/artifactory/api/system/ping')); console.log(await axios.get('https://my.external.resource')); return { status: 'DOWNLOAD_PROCEED', message: 'proceed', } }"
+ action = "BEFORE_DOWNLOAD"
+
+ filter_criteria = {
+ artifact_filter_criteria = {
+ repo_keys = [artifactory_local_generic_repository.my-generic-local.key]
+ }
+ }
+
+ secrets = [
+ {
+ key = "my-secret-key-1"
+ value = "my-secret-value-1"
+ },
+ {
+ key = "my-secret-key-2"
+ value = "my-secret-value-2"
+ }
+ ]
+}
+```
+
+Initialize Terrform:
+```sh
+$ terraform init
+```
+
+Plan (or Apply):
+```sh
+$ terraform plan
+```
+
+Detailed documentation of the resource and attributes are on [Terraform Registry](https://registry.terraform.io/providers/jfrog/platform/latest/docs).
+
+## License requirements:
+
+This provider requires access to the APIs, which are only available in the _licensed_ pro and enterprise editions.
+You can determine which license you have by accessing the following URL
+`${host}/artifactory/api/system/licenses/`
+
+You can either access it via api, or web browser - it does require admin level credentials, but it's one of the few APIs that will work without a license (side node: you can also install your license here with a `POST`)
+
+```bash
+curl -sL ${host}/artifactory/api/system/licenses/ | jq .
+{
+ "type" : "Enterprise Plus Trial",
+ "validThrough" : "Jan 29, 2022",
+ "licensedTo" : "JFrog Ltd"
+}
+```
+
+## Versioning
+
+In general, this project follows [semver](https://semver.org/) as closely as we can for tagging releases of the package. We've adopted the following versioning policy:
+
+* We increment the **major version** with any incompatible change to functionality, including changes to the exported Go API surface or behavior of the API.
+* We increment the **minor version** with any backwards-compatible changes to functionality.
+* We increment the **patch version** with any backwards-compatible bug fixes.
+
+## Contributors
+
+See the [contribution guide](CONTRIBUTIONS.md).
+
+## License
+
+Copyright (c) 2025 JFrog.
+
+Apache 2.0 licensed, see [LICENSE][LICENSE] file.
+
+[LICENSE]: ./LICENSE
diff --git a/terraform/.terraform/providers/registry.terraform.io/jfrog/platform/2.2.1/darwin_arm64/terraform-provider-platform_v2.2.1 b/terraform/.terraform/providers/registry.terraform.io/jfrog/platform/2.2.1/darwin_arm64/terraform-provider-platform_v2.2.1
new file mode 100755
index 0000000000..22687a2e8c
Binary files /dev/null and b/terraform/.terraform/providers/registry.terraform.io/jfrog/platform/2.2.1/darwin_arm64/terraform-provider-platform_v2.2.1 differ
diff --git a/terraform/actions_variable.tf b/terraform/actions_variable.tf
new file mode 100644
index 0000000000..43c919708a
--- /dev/null
+++ b/terraform/actions_variable.tf
@@ -0,0 +1,47 @@
+resource "github_actions_variable" "repo-deploy-releases" {
+ repository = "${var.repository}"
+ variable_name = "MVN_DEV_REPO_DEPLOY_RELEASES"
+ value = "${var.repo-deploy-releases}"
+}
+
+resource "github_actions_variable" "var2" {
+ repository = "${var.repository}"
+ variable_name = "MVN_DEV_REPO_DEPLOY_SNAPSHOTS"
+ value = "${var.repo-deploy-snapshots}"
+}
+
+resource "github_actions_variable" "var3" {
+ repository = "${var.repository}"
+ variable_name = "MVN_DEV_REPO_RESOLVE_RELEASES"
+ value = "${var.repo-resolve-releases}"
+}
+
+resource "github_actions_variable" "var4" {
+ repository = "${var.repository}"
+ variable_name = "MVN_DEV_REPO_RESOLVE_SNAPSHOTS"
+ value = "${var.repo-resolve-snapshots}"
+}
+
+resource "github_actions_variable" "var5" {
+ repository = "${var.repository}"
+ variable_name = "JFROG_PROJECT"
+ value = "${var.project}"
+}
+
+resource "github_actions_variable" "var6" {
+ repository = "${var.repository}"
+ variable_name = "OIDC_PROVIDER_NAME"
+ value = "${var.OIDC_PROVIDER_NAME}"
+}
+
+resource "github_actions_variable" "var7" {
+ repository = "${var.repository}"
+ variable_name = "OIDC_AUDIENCE"
+ value = "${var.OIDC_AUDIENCE}"
+}
+
+resource "github_actions_variable" "var8" {
+ repository = "${var.repository}"
+ variable_name = "OIDC_IDENTITY_MAPPING"
+ value = "${var.OIDC_IDENTITY_MAPPING}"
+}
\ No newline at end of file
diff --git a/terraform/jfrog_oidc.tf b/terraform/jfrog_oidc.tf
new file mode 100644
index 0000000000..6903d6eee5
--- /dev/null
+++ b/terraform/jfrog_oidc.tf
@@ -0,0 +1,27 @@
+resource "platform_oidc_configuration" "my-github-oidc-configuration" {
+ name = "${var.OIDC_PROVIDER_NAME}"
+ description = "${var.OIDC_PROVIDER_NAME}"
+ issuer_url = "https://token.actions.githubusercontent.com"
+ provider_type = "GitHub"
+ audience = "${var.OIDC_AUDIENCE}"
+ organization = "${var.github_owner}"
+}
+
+resource "platform_oidc_identity_mapping" "my-github-oidc-user-identity-mapping" {
+ name = "${var.OIDC_IDENTITY_MAPPING}"
+ description = "My GitHub OIDC user identity mapping"
+ provider_name = "${var.OIDC_PROVIDER_NAME}"
+ priority = 1
+
+ claims_json = jsonencode({
+ "actor" = "Rodi26",
+ "repository" = "Rodi26/benchmarkjava",
+ })
+
+ token_spec = {
+ username = "rodolphef@jfrog.com"
+ scope = "applied-permissions/user"
+ audience = "*@*"
+ expires_in = 7200
+ }
+}
\ No newline at end of file
diff --git a/terraform/provider.tf b/terraform/provider.tf
new file mode 100644
index 0000000000..df8426468b
--- /dev/null
+++ b/terraform/provider.tf
@@ -0,0 +1,20 @@
+terraform {
+ required_providers {
+ github = {
+ source = "integrations/github"
+ version = "~> 6.0"
+ }
+ platform = {
+ source = "jfrog/platform"
+ version = "2.2.1"
+ }
+ }
+}
+
+# Configure the GitHub Provider
+provider "github" {}
+
+provider "platform" {
+ url = "${var.jfrog_url}"
+ // supply JFROG_ACCESS_TOKEN as env var
+}
\ No newline at end of file
diff --git a/terraform/terraform copy.tfvars b/terraform/terraform copy.tfvars
new file mode 100644
index 0000000000..e171808d38
--- /dev/null
+++ b/terraform/terraform copy.tfvars
@@ -0,0 +1,13 @@
+repo-deploy-releases="w2-week2-maven-dev-virtual"
+repo-deploy-snapshots="w2-week2-maven-dev-virtual"
+repo-resolve-releases="w2-week2-maven-dev-virtual"
+repo-resolve-snapshots="w2-week2-maven-dev-virtual"
+project="w2"
+repository="spring-petclinic"
+github_repository = "spring-petclinic"
+github_token = "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"
+github_owner = "Rodi26"
+OIDC_PROVIDER_NAME = "rodolphef-github2"
+OIDC_AUDIENCE = "rodolphef-audience2"
+OIDC_IDENTITY_MAPPING = "rodolphef-mapping2"
+jfrog_url="https://rodolphefplus.jfrog.io"
\ No newline at end of file
diff --git a/terraform/terraform.tfstate b/terraform/terraform.tfstate
new file mode 100644
index 0000000000..dbb2bfddec
--- /dev/null
+++ b/terraform/terraform.tfstate
@@ -0,0 +1,178 @@
+{
+ "version": 4,
+ "terraform_version": "1.5.7",
+ "serial": 38,
+ "lineage": "acf2b589-f1f7-eb56-c863-d84a2a47fba5",
+ "outputs": {},
+ "resources": [
+ {
+ "mode": "managed",
+ "type": "github_actions_variable",
+ "name": "repo-deploy-releases",
+ "provider": "provider[\"registry.terraform.io/integrations/github\"]",
+ "instances": [
+ {
+ "schema_version": 0,
+ "attributes": {
+ "created_at": "2025-06-27 08:25:52 +0000 UTC",
+ "id": "benchmarkjava:MVN_DEV_REPO_DEPLOY_RELEASES",
+ "repository": "benchmarkjava",
+ "updated_at": "2025-06-27 08:38:25 +0000 UTC",
+ "value": "w2-week2-maven-dev-virtual",
+ "variable_name": "MVN_DEV_REPO_DEPLOY_RELEASES"
+ },
+ "sensitive_attributes": [],
+ "private": "bnVsbA=="
+ }
+ ]
+ },
+ {
+ "mode": "managed",
+ "type": "github_actions_variable",
+ "name": "var2",
+ "provider": "provider[\"registry.terraform.io/integrations/github\"]",
+ "instances": [
+ {
+ "schema_version": 0,
+ "attributes": {
+ "created_at": "2025-06-27 08:25:54 +0000 UTC",
+ "id": "benchmarkjava:MVN_DEV_REPO_DEPLOY_SNAPSHOTS",
+ "repository": "benchmarkjava",
+ "updated_at": "2025-06-27 08:38:33 +0000 UTC",
+ "value": "w2-week2-maven-dev-virtual",
+ "variable_name": "MVN_DEV_REPO_DEPLOY_SNAPSHOTS"
+ },
+ "sensitive_attributes": [],
+ "private": "bnVsbA=="
+ }
+ ]
+ },
+ {
+ "mode": "managed",
+ "type": "github_actions_variable",
+ "name": "var3",
+ "provider": "provider[\"registry.terraform.io/integrations/github\"]",
+ "instances": [
+ {
+ "schema_version": 0,
+ "attributes": {
+ "created_at": "2025-06-27 08:25:55 +0000 UTC",
+ "id": "benchmarkjava:MVN_DEV_REPO_RESOLVE_RELEASES",
+ "repository": "benchmarkjava",
+ "updated_at": "2025-06-27 08:38:34 +0000 UTC",
+ "value": "w2-week2-maven-dev-virtual",
+ "variable_name": "MVN_DEV_REPO_RESOLVE_RELEASES"
+ },
+ "sensitive_attributes": [],
+ "private": "bnVsbA=="
+ }
+ ]
+ },
+ {
+ "mode": "managed",
+ "type": "github_actions_variable",
+ "name": "var4",
+ "provider": "provider[\"registry.terraform.io/integrations/github\"]",
+ "instances": [
+ {
+ "schema_version": 0,
+ "attributes": {
+ "created_at": "2025-06-27 08:25:47 +0000 UTC",
+ "id": "benchmarkjava:MVN_DEV_REPO_RESOLVE_SNAPSHOTS",
+ "repository": "benchmarkjava",
+ "updated_at": "2025-06-27 08:38:29 +0000 UTC",
+ "value": "w2-week2-maven-dev-virtual",
+ "variable_name": "MVN_DEV_REPO_RESOLVE_SNAPSHOTS"
+ },
+ "sensitive_attributes": [],
+ "private": "bnVsbA=="
+ }
+ ]
+ },
+ {
+ "mode": "managed",
+ "type": "github_actions_variable",
+ "name": "var5",
+ "provider": "provider[\"registry.terraform.io/integrations/github\"]",
+ "instances": [
+ {
+ "schema_version": 0,
+ "attributes": {
+ "created_at": "2025-06-27 08:25:53 +0000 UTC",
+ "id": "benchmarkjava:JFROG_PROJECT",
+ "repository": "benchmarkjava",
+ "updated_at": "2025-06-27 08:38:28 +0000 UTC",
+ "value": "sai",
+ "variable_name": "JFROG_PROJECT"
+ },
+ "sensitive_attributes": [],
+ "private": "bnVsbA=="
+ }
+ ]
+ },
+ {
+ "mode": "managed",
+ "type": "github_actions_variable",
+ "name": "var6",
+ "provider": "provider[\"registry.terraform.io/integrations/github\"]",
+ "instances": [
+ {
+ "schema_version": 0,
+ "attributes": {
+ "created_at": "2025-06-27 08:25:49 +0000 UTC",
+ "id": "benchmarkjava:OIDC_PROVIDER_NAME",
+ "repository": "benchmarkjava",
+ "updated_at": "2025-06-27 08:39:09 +0000 UTC",
+ "value": "rodolphef-benchmarkjava",
+ "variable_name": "OIDC_PROVIDER_NAME"
+ },
+ "sensitive_attributes": [],
+ "private": "bnVsbA=="
+ }
+ ]
+ },
+ {
+ "mode": "managed",
+ "type": "github_actions_variable",
+ "name": "var7",
+ "provider": "provider[\"registry.terraform.io/integrations/github\"]",
+ "instances": [
+ {
+ "schema_version": 0,
+ "attributes": {
+ "created_at": "2025-06-27 08:25:50 +0000 UTC",
+ "id": "benchmarkjava:OIDC_AUDIENCE",
+ "repository": "benchmarkjava",
+ "updated_at": "2025-06-27 08:38:30 +0000 UTC",
+ "value": "rodolphef-benchmarkjava-audience",
+ "variable_name": "OIDC_AUDIENCE"
+ },
+ "sensitive_attributes": [],
+ "private": "bnVsbA=="
+ }
+ ]
+ },
+ {
+ "mode": "managed",
+ "type": "github_actions_variable",
+ "name": "var8",
+ "provider": "provider[\"registry.terraform.io/integrations/github\"]",
+ "instances": [
+ {
+ "schema_version": 0,
+ "attributes": {
+ "created_at": "2025-06-27 08:25:48 +0000 UTC",
+ "id": "benchmarkjava:OIDC_IDENTITY_MAPPING",
+ "repository": "benchmarkjava",
+ "updated_at": "2025-06-27 08:38:26 +0000 UTC",
+ "value": "rodolphef-benchmarkjava-mapping",
+ "variable_name": "OIDC_IDENTITY_MAPPING"
+ },
+ "sensitive_attributes": [],
+ "private": "bnVsbA=="
+ }
+ ]
+ }
+ ],
+ "check_results": null
+}
diff --git a/terraform/terraform.tfstate.backup b/terraform/terraform.tfstate.backup
new file mode 100644
index 0000000000..0fce274e57
--- /dev/null
+++ b/terraform/terraform.tfstate.backup
@@ -0,0 +1,178 @@
+{
+ "version": 4,
+ "terraform_version": "1.5.7",
+ "serial": 37,
+ "lineage": "acf2b589-f1f7-eb56-c863-d84a2a47fba5",
+ "outputs": {},
+ "resources": [
+ {
+ "mode": "managed",
+ "type": "github_actions_variable",
+ "name": "repo-deploy-releases",
+ "provider": "provider[\"registry.terraform.io/integrations/github\"]",
+ "instances": [
+ {
+ "schema_version": 0,
+ "attributes": {
+ "created_at": "2025-06-27 08:25:52 +0000 UTC",
+ "id": "benchmarkjava:MVN_DEV_REPO_DEPLOY_RELEASES",
+ "repository": "benchmarkjava",
+ "updated_at": "2025-06-27 08:38:25 +0000 UTC",
+ "value": "w2-week2-maven-dev-virtual",
+ "variable_name": "MVN_DEV_REPO_DEPLOY_RELEASES"
+ },
+ "sensitive_attributes": [],
+ "private": "bnVsbA=="
+ }
+ ]
+ },
+ {
+ "mode": "managed",
+ "type": "github_actions_variable",
+ "name": "var2",
+ "provider": "provider[\"registry.terraform.io/integrations/github\"]",
+ "instances": [
+ {
+ "schema_version": 0,
+ "attributes": {
+ "created_at": "2025-06-27 08:25:54 +0000 UTC",
+ "id": "benchmarkjava:MVN_DEV_REPO_DEPLOY_SNAPSHOTS",
+ "repository": "benchmarkjava",
+ "updated_at": "2025-06-27 08:38:33 +0000 UTC",
+ "value": "w2-week2-maven-dev-virtual",
+ "variable_name": "MVN_DEV_REPO_DEPLOY_SNAPSHOTS"
+ },
+ "sensitive_attributes": [],
+ "private": "bnVsbA=="
+ }
+ ]
+ },
+ {
+ "mode": "managed",
+ "type": "github_actions_variable",
+ "name": "var3",
+ "provider": "provider[\"registry.terraform.io/integrations/github\"]",
+ "instances": [
+ {
+ "schema_version": 0,
+ "attributes": {
+ "created_at": "2025-06-27 08:25:55 +0000 UTC",
+ "id": "benchmarkjava:MVN_DEV_REPO_RESOLVE_RELEASES",
+ "repository": "benchmarkjava",
+ "updated_at": "2025-06-27 08:38:34 +0000 UTC",
+ "value": "w2-week2-maven-dev-virtual",
+ "variable_name": "MVN_DEV_REPO_RESOLVE_RELEASES"
+ },
+ "sensitive_attributes": [],
+ "private": "bnVsbA=="
+ }
+ ]
+ },
+ {
+ "mode": "managed",
+ "type": "github_actions_variable",
+ "name": "var4",
+ "provider": "provider[\"registry.terraform.io/integrations/github\"]",
+ "instances": [
+ {
+ "schema_version": 0,
+ "attributes": {
+ "created_at": "2025-06-27 08:25:47 +0000 UTC",
+ "id": "benchmarkjava:MVN_DEV_REPO_RESOLVE_SNAPSHOTS",
+ "repository": "benchmarkjava",
+ "updated_at": "2025-06-27 08:38:29 +0000 UTC",
+ "value": "w2-week2-maven-dev-virtual",
+ "variable_name": "MVN_DEV_REPO_RESOLVE_SNAPSHOTS"
+ },
+ "sensitive_attributes": [],
+ "private": "bnVsbA=="
+ }
+ ]
+ },
+ {
+ "mode": "managed",
+ "type": "github_actions_variable",
+ "name": "var5",
+ "provider": "provider[\"registry.terraform.io/integrations/github\"]",
+ "instances": [
+ {
+ "schema_version": 0,
+ "attributes": {
+ "created_at": "2025-06-27 08:25:53 +0000 UTC",
+ "id": "benchmarkjava:JFROG_PROJECT",
+ "repository": "benchmarkjava",
+ "updated_at": "2025-06-27 08:38:28 +0000 UTC",
+ "value": "sai",
+ "variable_name": "JFROG_PROJECT"
+ },
+ "sensitive_attributes": [],
+ "private": "bnVsbA=="
+ }
+ ]
+ },
+ {
+ "mode": "managed",
+ "type": "github_actions_variable",
+ "name": "var6",
+ "provider": "provider[\"registry.terraform.io/integrations/github\"]",
+ "instances": [
+ {
+ "schema_version": 0,
+ "attributes": {
+ "created_at": "2025-06-27 08:25:49 +0000 UTC",
+ "id": "benchmarkjava:OIDC_PROVIDER_NAME",
+ "repository": "benchmarkjava",
+ "updated_at": "2025-06-27 08:39:09 +0000 UTC",
+ "value": "rodolphef-benchmarkjava",
+ "variable_name": "OIDC_PROVIDER_NAME"
+ },
+ "sensitive_attributes": [],
+ "private": "bnVsbA=="
+ }
+ ]
+ },
+ {
+ "mode": "managed",
+ "type": "github_actions_variable",
+ "name": "var7",
+ "provider": "provider[\"registry.terraform.io/integrations/github\"]",
+ "instances": [
+ {
+ "schema_version": 0,
+ "attributes": {
+ "created_at": "2025-06-27 08:25:50 +0000 UTC",
+ "id": "benchmarkjava:OIDC_AUDIENCE",
+ "repository": "benchmarkjava",
+ "updated_at": "2025-06-27 08:38:30 +0000 UTC",
+ "value": "rodolphef-benchmarkjava-audience",
+ "variable_name": "OIDC_AUDIENCE"
+ },
+ "sensitive_attributes": [],
+ "private": "bnVsbA=="
+ }
+ ]
+ },
+ {
+ "mode": "managed",
+ "type": "github_actions_variable",
+ "name": "var8",
+ "provider": "provider[\"registry.terraform.io/integrations/github\"]",
+ "instances": [
+ {
+ "schema_version": 0,
+ "attributes": {
+ "created_at": "2025-06-27 08:25:48 +0000 UTC",
+ "id": "benchmarkjava:OIDC_IDENTITY_MAPPING",
+ "repository": "benchmarkjava",
+ "updated_at": "2025-06-27 08:38:26 +0000 UTC",
+ "value": "rodolphef-benchmarkjava-mapping",
+ "variable_name": "OIDC_IDENTITY_MAPPING"
+ },
+ "sensitive_attributes": [],
+ "private": "bnVsbA=="
+ }
+ ]
+ }
+ ],
+ "check_results": null
+}
diff --git a/terraform/terraform.tfvars b/terraform/terraform.tfvars
new file mode 100644
index 0000000000..7b92439669
--- /dev/null
+++ b/terraform/terraform.tfvars
@@ -0,0 +1,13 @@
+repo-deploy-releases="w2-week2-maven-dev-virtual"
+repo-deploy-snapshots="w2-week2-maven-dev-virtual"
+repo-resolve-releases="w2-week2-maven-dev-virtual"
+repo-resolve-snapshots="w2-week2-maven-dev-virtual"
+repository="benchmarkjava"
+github_repository = "benchmarkjava"
+github_token = "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"
+github_owner = "Rodi26"
+OIDC_PROVIDER_NAME = "rodolphef-benchmarkjava"
+OIDC_AUDIENCE = "rodolphef-benchmarkjava-audience"
+OIDC_IDENTITY_MAPPING = "rodolphef-benchmarkjava-mapping"
+jfrog_url="https://rodolphefplus.jfrog.io"
+project = "sai"
\ No newline at end of file
diff --git a/terraform/variables.tf b/terraform/variables.tf
new file mode 100644
index 0000000000..b2539608f1
--- /dev/null
+++ b/terraform/variables.tf
@@ -0,0 +1,58 @@
+variable "repo-deploy-releases" {
+ type = string
+}
+
+variable "repo-deploy-snapshots" {
+ type = string
+}
+
+variable "repo-resolve-releases" {
+ type = string
+}
+
+variable "repo-resolve-snapshots" {
+ type = string
+}
+
+variable "project" {
+ type = string
+}
+
+variable "repository" {
+ type = string
+}
+
+variable "github_token" {
+ type = string
+ description = "GitHub personal access token"
+}
+
+variable "github_owner" {
+ type = string
+ description = "GitHub organization or individual user account to manage"
+}
+
+variable "github_repository" {
+ type = string
+ description = "GitHub repository name"
+}
+
+variable "jfrog_url" {
+ type = string
+ default = "http://localhost:8081"
+}
+
+variable "OIDC_PROVIDER_NAME" {
+ type = string
+ description = "OIDC Provider Name"
+}
+
+variable "OIDC_AUDIENCE" {
+ type = string
+ description = "OIDC Audience"
+}
+
+variable "OIDC_IDENTITY_MAPPING" {
+ type = string
+ description = "OIDC identity mapping"
+}
\ No newline at end of file