terraform-provider-opsgenie
terraform-provider-opsgenie copied to clipboard
Terraform OpsGenie provider
Should fix #332
### Terraform Version ``` Terraform v1.2.7 on linux_amd64 + provider registry.terraform.io/community-terraform-providers/ignition v2.1.3 + provider registry.terraform.io/hashicorp/aws v4.33.0 + provider registry.terraform.io/hashicorp/cloudinit v2.2.0 + provider registry.terraform.io/hashicorp/external v2.2.2 + provider registry.terraform.io/hashicorp/local v2.2.3 + provider...
### Terraform Version ``` Terraform v1.2.7 on linux_amd64 + provider registry.terraform.io/community-terraform-providers/ignition v2.1.3 + provider registry.terraform.io/hashicorp/aws v4.33.0 + provider registry.terraform.io/hashicorp/cloudinit v2.2.0 + provider registry.terraform.io/hashicorp/external v2.2.2 + provider registry.terraform.io/hashicorp/local v2.2.3 + provider...
### Terraform Version `v1.2.5` ### Affected Resource(s) - `service_incident_rule` ### Terraform Configuration Files ```hcl resource "opsgenie_team" "test" { name = "example-team" description = "This team deals with all the things,...
### Terraform Version 1.3.0 ### Affected Resource(s) Please list the resources as a list, for example: - opsgenie_api_integration ### Terraform Configuration Files ```hcl resource "opsgenie_api_integration" "SNS_Outgoing_Integration" { name = "My-Amazon-SNS-Outgoing-Integration"...
I have following resources: ``` resource "opsgenie_service_incident_rule" "pingdom" { for_each = toset(["service1", "service2", "service3"] service_id = resource.opsgenie_service.service[each.value].id incident_rule { condition_match_type = "match-all-conditions" conditions { field = "source" not = false...
It was also attempted to be corrected in https://github.com/opsgenie/terraform-provider-opsgenie/pull/295, but for some reason it was closed. Due to changes in https://github.com/hashicorp/terraform-website/pull/2010, the logo link has been lost. Specify the new...
Hi there, When creating a new opsgenie_api_integration resource with `enabled = false`, the created resource is created with `enabled = true` in OpsGenie side. Basically: ``` $ terraform apply #...
### OpsGenie API endpoint GET /v2/teams ### Returned data ``` [ { "id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", "name": "Database", "description": "DBA Team", "links": { "web": "https://app.opsgenie.com/teams/dashboard/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/main", "api": "https://api.opsgenie.com/v2/teams/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" } }, { "id": "yyyyyyyy-yyyy-yyyy-yyyy-yyyyyyyyyyyy",...
Hi there, It seems that I've found a bug in the Terraform OpsGenie Provider, to be specific an "opsgenie_integration_action" resource. Here is the link to its documentation (https://registry.terraform.io/providers/opsgenie/opsgenie/latest/docs/resources/integration_action). In our...