forked from ksatirli/terraform-github-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmoved.tf
44 lines (34 loc) · 920 Bytes
/
moved.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# As part of the `4.0.0` rewrite of this module, all resource identifiers have been renamed from `this` to `main.`
# See https://www.terraform.io/language/modules/develop/refactoring#moved-block-syntax for more information.
moved {
from = github_repository.this
to = github_repository.main
}
moved {
from = github_branch_default.this
to = github_branch_default.main
}
moved {
from = github_repository_deploy_key.this
to = github_repository_deploy_key.main
}
moved {
from = github_repository_collaborator.this
to = github_repository_collaborator.main
}
moved {
from = github_team_repository.this
to = github_team_repository.main
}
moved {
from = github_issue_label.this
to = github_issue_label.main
}
moved {
from = github_repository_project.this
to = github_repository_project.main
}
moved {
from = github_repository_file.this
to = github_repository_file.main
}