Skip to content

Commit

Permalink
fix: Fix wrong variable name repo -> repository
Browse files Browse the repository at this point in the history
  • Loading branch information
jneo8 committed May 31, 2024
1 parent 0d4a5b1 commit 4fa9bbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform-plans/modules/GitHub/workflows/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ output "pr_branch" {
}

output "pr_url" {
value = length(local.changed_files) > 0 ? "https://github.com/${var.owner}/${var.repo}/pull/${github_repository_pull_request.workflows_update_pr[0].number}" : "No PR created"
value = length(local.changed_files) > 0 ? "https://github.com/${var.owner}/${var.repository}/pull/${github_repository_pull_request.workflows_update_pr[0].number}" : "No PR created"

depends_on = [
github_repository_pull_request.workflows_update_pr
Expand Down

0 comments on commit 4fa9bbc

Please sign in to comment.