Skip to content

Commit

Permalink
fix: change organization optional rule
Browse files Browse the repository at this point in the history
  • Loading branch information
KoLiBer committed Sep 10, 2024
1 parent 59d104c commit 0f1f0a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion root.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ resource "sentry_organization" "this" {
}

locals {
org_id = coalesce(var.id, sentry_organization.this[0].id)
org_id = try(sentry_organization.this[0].id, var.id)
}

0 comments on commit 0f1f0a8

Please sign in to comment.