-
Notifications
You must be signed in to change notification settings - Fork 781
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Fix deprecation warnings in example projects (#2038)
Co-authored-by: Keegan Campbell <me@kfcampbell.com>
- Loading branch information
1 parent
7858e45
commit f7058a8
Showing
5 changed files
with
9 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
provider "github" { | ||
organization = var.organization | ||
token = var.github_token | ||
owner = var.organization | ||
token = var.github_token | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
provider "github" { | ||
version = "2.8.0" | ||
organization = var.organization | ||
token = var.github_token | ||
owner = var.organization | ||
token = var.github_token | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
provider "github" { | ||
organization = var.organization | ||
token = var.github_token | ||
owner = var.organization | ||
token = var.github_token | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
resource "github_repository" "delete_branch_on_merge" { | ||
name = "delete_branch_on_merge" | ||
description = "A repository with delete-branch-on-merge configured" | ||
default_branch = "main" | ||
visibility = "private" | ||
delete_branch_on_merge = true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
provider "github" { | ||
version = "2.8.0" | ||
organization = var.organization | ||
token = var.github_token | ||
owner = var.organization | ||
token = var.github_token | ||
} |