From a0d3ac87dc87f0a35038fc7fa72c0bd2db87a119 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" Date: Mon, 30 Sep 2024 09:36:40 +0000 Subject: [PATCH] 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" {