We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Terraform v0.11.14
resource "github_team" "Managers" { name = "Managers" privacy = "closed" } resource "github_team_membership" "Managers-Jonnymcc" { username = "Jonnymcc" team_id = "${github_team.Managers.id}" role = "member" }
github_team_membership.Merge_Managers-Jonnymcc: Destroying... (ID: xxxxx:Jonnymcc) Error: Error applying plan: 1 error occurred: * github_team_membership.Merge_Managers-Jonnymcc (destroy): 1 error occurred: * github_team_membership.Merge_Managers-Jonnymcc: Unexpected ID format (""), expected numerical ID. strconv.ParseInt: parsing "": invalid syntax
When running terraform show, the github_team_membership resource should have a team_id attribute value.
github_team_membership
team_id
The team_id = "".
Please list the steps required to reproduce the issue, for example:
terraform import github_team_membership.Managers-Jonnymcc xxxxx:Jonnymcc
terraform apply -target github_team_membership.Managers-Jonnymcc
Maybe this bug fix is related... resource/github_team_membership: Validation of team_id (#253)
The text was updated successfully, but these errors were encountered:
duplicate of https://github.com/terraform-providers/terraform-provider-github/issues/323
Sorry, something went wrong.
Same issue for me as well 😢 just popped up this morning.
Terraform v0.11.13
Thank you @samrees for noticing, you are right. I'm going to close this as a duplicate of #323
I just merged a PR which fixes the bug and we will release it soon.
No branches or pull requests
Terraform Version
Terraform v0.11.14
Affected Resource(s)
Terraform Configuration Files
Debug Output
Expected Behavior
When running terraform show, the
github_team_membership
resource should have ateam_id
attribute value.Actual Behavior
The
team_id
= "".Steps to Reproduce
Please list the steps required to reproduce the issue, for example:
terraform import github_team_membership.Managers-Jonnymcc xxxxx:Jonnymcc
terraform apply -target github_team_membership.Managers-Jonnymcc
References
Maybe this bug fix is related...
resource/github_team_membership: Validation of team_id (#253)
The text was updated successfully, but these errors were encountered: