Skip to content

Commit

Permalink
terraform fmt: automated action
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored and github-actions[bot] committed Sep 30, 2024
1 parent dc6e237 commit a0d3ac8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_version = ">= 1.5.6"
required_providers {
artifactory = {
source = "jfrog/artifactory"
source = "jfrog/artifactory"
version = "10.7.6"
}
}
Expand Down
6 changes: 3 additions & 3 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
}
}
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
@@ -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" {
Expand Down

0 comments on commit a0d3ac8

Please sign in to comment.