Sean Liao

Results 3 issues of Sean Liao

When creating a metric provider of the type `Datadog`, the statuspage api https://developer.statuspage.io/#operation/postPagesPageIdMetricsProviders documents `api_key` and `api_token` as the required fields ![2023-09-19-153422](https://github.com/yannh/terraform-provider-statuspage/assets/108338221/5aa7fddf-c772-4b42-b5db-869c31d22916) But the provider documents `api_key` and `application_key` as...

https://registry.terraform.io/providers/yannh/statuspage/latest/docs/resources/statuspage_metrics title should match the name of the resource `statuspage_metric` (without the `s` suffix) ![2023-09-19-153006](https://github.com/yannh/terraform-provider-statuspage/assets/108338221/1edc657f-22b5-4243-a9dd-c84b5bac2c77)

version v0.1.12 ``` resource "statuspage_metric" "staging_platform_api_success_rate" { page_id = local.staging_page_id metrics_provider_id = statuspage_metrics_provider.staging_datadog.id name = "Platform API Success Rate" metric_identifier = "100-((sum:envoy.http.downstream.rq.xx{envoy.response.code.class:5,container:gateway-proxy}.as_count().rollup(sum, 3600))/(sum:envoy.http.downstream.rq.xx{container:gateway-proxy}.as_count().rollup(sum, 3600))*100)" display = false suffix = "%"...