Issue Description
The Terraform provider for Opsgenie does not support AzureServiceHealthV2 as an integration type for opsgenie_api_integration.
In the Opsgenie UI, users can select AzureServiceHealthV2 as an integration type. However, when defining an opsgenie_api_integration resource in Terraform, this option is not available.
Expected Behavior
Terraform should allow specifying AzureServiceHealthV2 as an integration type in the opsgenie_api_integration resource.
Example Configuration
resource "opsgenie_api_integration" "example-api-integration" {
name = "api-based-int"
type = "AzureServiceHealthV2"
}
Currently, this results in an error because AzureServiceHealthV2 is not a supported type in the provider.
Steps to Reproduce
- Attempt to define an
opsgenie_api_integration resource in Terraform with type = "AzureServiceHealthV2".
- Run
terraform apply.
- Observe that the provider does not recognize
AzureServiceHealthV2 as a valid type.
Proposed Solution
Add support for AzureServiceHealthV2 in the Terraform provider so it matches the available options in the Opsgenie UI.
Issue Description
The Terraform provider for Opsgenie does not support
AzureServiceHealthV2as an integration type foropsgenie_api_integration.In the Opsgenie UI, users can select
AzureServiceHealthV2as an integration type. However, when defining anopsgenie_api_integrationresource in Terraform, this option is not available.Expected Behavior
Terraform should allow specifying
AzureServiceHealthV2as an integration type in theopsgenie_api_integrationresource.Example Configuration
Currently, this results in an error because
AzureServiceHealthV2is not a supported type in the provider.Steps to Reproduce
opsgenie_api_integrationresource in Terraform withtype = "AzureServiceHealthV2".terraform apply.AzureServiceHealthV2as a valid type.Proposed Solution
Add support for
AzureServiceHealthV2in the Terraform provider so it matches the available options in the Opsgenie UI.