{"id":37117874,"url":"https://github.com/multani/terraform-provider-incidentio","last_synced_at":"2026-01-14T13:47:04.677Z","repository":{"id":37272860,"uuid":"488638284","full_name":"multani/terraform-provider-incidentio","owner":"multani","description":"Use https://registry.terraform.io/providers/incident-io/incident/latest instead","archived":true,"fork":false,"pushed_at":"2023-03-18T18:47:03.000Z","size":176,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-06-20T00:32:25.388Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/multani.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-05-04T15:13:45.000Z","updated_at":"2023-04-11T15:48:20.000Z","dependencies_parsed_at":"2024-06-20T00:12:01.173Z","dependency_job_id":"25300061-a87b-40df-bdd8-22fdf494762e","html_url":"https://github.com/multani/terraform-provider-incidentio","commit_stats":{"total_commits":80,"total_committers":5,"mean_commits":16.0,"dds":0.4125,"last_synced_commit":"aa657ba01ab39e1f171d0ddefe7ab1d7b3f36458"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":"hashicorp/terraform-provider-scaffolding-framework","purl":"pkg:github/multani/terraform-provider-incidentio","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multani%2Fterraform-provider-incidentio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multani%2Fterraform-provider-incidentio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multani%2Fterraform-provider-incidentio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multani%2Fterraform-provider-incidentio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/multani","download_url":"https://codeload.github.com/multani/terraform-provider-incidentio/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multani%2Fterraform-provider-incidentio/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28422233,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T13:30:50.153Z","status":"ssl_error","status_checked_at":"2026-01-14T13:29:08.907Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-14T13:47:03.992Z","updated_at":"2026-01-14T13:47:04.662Z","avatar_url":"https://github.com/multani.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"Use the official [incident.io](https://registry.terraform.io/providers/incident-io/incident/latest) provider instead!\n\n\n# Terraform Provider for [incident.io](https://incident.io)\n\nThis Terraform provider helps you to configure your [incident.io](https://incident.io) account.\n\n1. Get an API key in https://app.incident.io/settings/api-keys\n2. Configure https://incident.io using the provider:\n\n```hcl\nterraform {\n  required_providers {\n    incidentio = {\n      source = \"multani/incidentio\"\n    }\n  }\n}\n\nvariable \"incidentio_api_key\" {\n  description = \u003c\u003cEOF\nAn incident.io API key.\n\nGet one at https://app.incident.io/settings/api-keys\nEOF\n}\n\nprovider \"incidentio\" {\n  api_key = var.incidentio_api_key\n}\n\nresource \"incidentio_incident_role\" \"spectator\" {\n  name        = \"Spectator\"\n  short_form  = \"spectator\"\n  description = \"A person that enjoys eating popcorn when things are burning.\"\n\n  instructions = \u003c\u003cEOF\n- Grab some popcorn\n- Silently watch the incident happening\n- Congrat the other roles once the incident has been resolved\nEOF\n\n  # This role is mostly probably not required, most of the time.\n  required   = false\n}\n```\n\n## Requirements\n\n- [Terraform](https://www.terraform.io/downloads.html) \u003e= 1.0\n- [Go](https://golang.org/doc/install) \u003e= 1.17\n\n## Building The Provider\n\n1. Clone the repository\n1. Enter the repository directory\n1. Build the provider using the Go `install` command:\n\n```shell\ngo install\n```\n\n## Adding Dependencies\n\nThis provider uses [Go modules](https://github.com/golang/go/wiki/Modules).\nPlease see the Go documentation for the most up to date information about using Go modules.\n\nTo add a new dependency `github.com/author/dependency` to your Terraform provider:\n\n```shell\ngo get github.com/author/dependency\ngo mod tidy\n```\n\nThen commit the changes to `go.mod` and `go.sum`.\n\n## Using the provider\n\nFill this in for each provider\n\n## Developing the Provider\n\nIf you wish to work on the provider, you'll first need [Go](http://www.golang.org) installed on your machine (see [Requirements](#requirements) above).\n\nTo compile the provider, run `go install`. This will build the provider and put the provider binary in the `$GOPATH/bin` directory.\n\nTo generate or update documentation, run `go generate`.\n\nIn order to run the full suite of Acceptance tests, run `make testacc`. You will\nneed a valid incident.io API key that you can get from\nhttps://app.incident.io/settings/api-keys and export it as the `INCIDENT_IO_API_KEY` environment variable.\n\n*Note:* Acceptance tests create real resources, and often cost money to run.\n\n```shell\nexport INCIDENT_IO_API_KEY=\"xxx\"\nmake testacc\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmultani%2Fterraform-provider-incidentio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmultani%2Fterraform-provider-incidentio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmultani%2Fterraform-provider-incidentio/lists"}