0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

terraformでgithubを管理してたら何もしてないのにwarning, error in 2020/10

Last updated at Posted at 2020-10-18

private -> visibility

Warning: "private": [DEPRECATED] use visibility instead というワーニングが。

repo.tf
resource github_repository repo {
  private = true
}

これを

repo.tf
resource github_repository repo {
  visibility = "private"
}

こう。

repository_id

The argument "repository_id" is required, but no definition was found. というエラーが。

node_id を指定する。

repo.tf
resource github_branch_protection repo {
  repository_id = github_repository.repo.node_id
  ...
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?