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 version Terraform v0.12.20 + provider.github v2.8.1
github_organization_webhook
resource "github_organization_webhook" "mywebhook" { active = true configuration { url = "https://${var.some_url}/events" content_type = "json" secret = var.some_secret } events = ["issue_comment", "pull_request", "pull_request_review", "push"] } provider "github" { token = var.a_github_token organization = var.a_github_organization }
Being able to import a github_organization_webhook
Error: resource github_organization_webhook doesn't support import
$ terraform import github_organization_webhook.mywebhook 123456789 github_organization_webhook.mywebhook: Importing from ID "123456789"... Error: resource github_organization_webhook doesn't support import
github_repository_webhook
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Terraform Version
Affected Resource(s)
github_organization_webhook
Terraform Configuration Files
Expected Behavior
Being able to import a
github_organization_webhook
Actual Behavior
Error: resource github_organization_webhook doesn't support import
Steps to Reproduce
Notes
github_repository_webhook
has documented support for importinggithub_organization_webhook
doesn't mention importThe text was updated successfully, but these errors were encountered: