Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rocktavious committed Aug 30, 2024
1 parent efe32cf commit 4eaf47d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/service/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ resource "opslevel_service" "this" {
}

resource "opslevel_service_tool" "this" {
for_each = { for item in var.tools : item.name => item }
for_each = { for item in var.tools : item.name => item }

category = each.value.category
environment = each.value.environment
Expand All @@ -26,7 +26,7 @@ resource "opslevel_service_tool" "this" {
}

resource "opslevel_service_repository" "this" {
for_each = { for item in var.repositories : item.name => item }
for_each = { for item in var.repositories : item.name => item }

base_directory = each.value.base_directory
name = each.value.name
Expand All @@ -35,7 +35,7 @@ resource "opslevel_service_repository" "this" {
}

resource "opslevel_property_assignment" "test" {
for_each = var.properties
for_each = var.properties

definition = each.key
owner = opslevel_service.this.id
Expand Down

0 comments on commit 4eaf47d

Please sign in to comment.