Skip to content

Commit

Permalink
Update document of harbor_project_member_user and harbor_project_memb…
Browse files Browse the repository at this point in the history
…er_group to reference project_id

Signed-off-by: sshota0809 <[email protected]>
  • Loading branch information
sshota0809 committed Dec 14, 2021
1 parent 21b14e0 commit 0d128aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/resources/project_member_group.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "harbor_project" "main" {
}
resource "harbor_project_member_group" "main" {
project_id = harbor_project.main.id
project_id = harbor_project.main.project_id
group_name = "testing1"
role = "master"
type = "oidc"
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/project_member_user.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "harbor_project" "main" {
}
resource "harbor_project_member_user" "main" {
project_id = harbor_project.main.id
project_id = harbor_project.main.project_id
user_name = "testing1"
role = "master"
}
Expand Down

0 comments on commit 0d128aa

Please sign in to comment.