From 844632f2057de11c0b408fcf68b3054f241f938a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Aug 2024 09:09:55 +0000 Subject: [PATCH 1/2] Bump hashicorp/setup-terraform from 3.1.1 to 3.1.2 Bumps [hashicorp/setup-terraform](https://github.com/hashicorp/setup-terraform) from 3.1.1 to 3.1.2. - [Release notes](https://github.com/hashicorp/setup-terraform/releases) - [Changelog](https://github.com/hashicorp/setup-terraform/blob/main/CHANGELOG.md) - [Commits](https://github.com/hashicorp/setup-terraform/compare/v3.1.1...v3.1.2) --- updated-dependencies: - dependency-name: hashicorp/setup-terraform dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/format.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index c7d4292..e256d50 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -12,7 +12,7 @@ jobs: ref: ${{ github.event.pull_request.head.ref }} token: ${{ secrets.AUTOMATION_PAT }} - name: 'Setup' - uses: hashicorp/setup-terraform@v3.1.1 + uses: hashicorp/setup-terraform@v3.1.2 with: terraform_version: 1.1.5 - name: 'Format' From e197b53112e21ae5ea9aac01b6800b1db1d79240 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" Date: Mon, 26 Aug 2024 09:10:09 +0000 Subject: [PATCH 2/2] terraform fmt: automated action --- examples/complete/main.tf | 2 +- main.tf | 6 +++--- variables.tf | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/complete/main.tf b/examples/complete/main.tf index ea33e4a..cec72c6 100644 --- a/examples/complete/main.tf +++ b/examples/complete/main.tf @@ -2,7 +2,7 @@ terraform { required_version = ">= 1.5.6" required_providers { artifactory = { - source = "jfrog/artifactory" + source = "jfrog/artifactory" version = "10.7.6" } } diff --git a/main.tf b/main.tf index 287eefa..8fdcf73 100644 --- a/main.tf +++ b/main.tf @@ -28,12 +28,12 @@ resource "artifactory_permission_target" "my_permission_target" { repo { actions { groups { - name = upper(artifactory_group.this.name) - permissions = var.permissions // DEFAULT: ["read", "write"] + name = upper(artifactory_group.this.name) + permissions = var.permissions // DEFAULT: ["read", "write"] } } excludes_pattern = [""] includes_pattern = ["**"] - repositories = var.repositories // DEFAULT: ["ANY"] + repositories = var.repositories // DEFAULT: ["ANY"] } } \ No newline at end of file diff --git a/variables.tf b/variables.tf index 96c612a..f88c567 100644 --- a/variables.tf +++ b/variables.tf @@ -1,13 +1,13 @@ variable "admin_privileges" { description = "Whether the group has admin privileges" type = bool - default = false + default = false } variable "auto_join" { description = "Whether new users are automatically added to the group" type = bool - default = true + default = true } variable "external_id" {