Skip to content

Commit a1c7b91

Browse files
committed
fix:remove import
1 parent 44592e8 commit a1c7b91

File tree

3 files changed

+0
-18
lines changed

3 files changed

+0
-18
lines changed

terraform/resources-repo-admin-teams.tf

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11
# Define the admin team for each repository
2-
import {
3-
for_each = local.project_repositories
4-
5-
id = each.key
6-
to = github_team.repo_admin_team[each.key]
7-
}
82
resource "github_team" "repo_admin_team" {
93
for_each = local.project_repositories
104

terraform/resources-repo-committer-teams.tf

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11
# Define the committers team for each repository
2-
import {
3-
for_each = local.project_repositories
4-
5-
id = each.key
6-
to = github_team.repo_committer_team[each.key]
7-
}
82
resource "github_team" "repo_committer_team" {
93
for_each = local.project_repositories
104

terraform/resources-repo-teams.tf

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11
# Create the main repository team for Django Commons.
2-
import {
3-
for_each = local.project_repositories
4-
5-
id = each.key
6-
to = github_team.repo_team[each.key]
7-
}
82
resource "github_team" "repo_team" {
93
for_each = local.project_repositories
104

0 commit comments

Comments
 (0)