From 84d288135a9523b4bc6988095c24d9063781a243 Mon Sep 17 00:00:00 2001 From: Karol Hadala Date: Thu, 1 Jul 2021 13:59:55 +0200 Subject: [PATCH 1/2] Fix AWS integration poll rate validation Signalfx API accepts a poll rate between 60 and 600. --- signalfx/resource_signalfx_aws_integration.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/signalfx/resource_signalfx_aws_integration.go b/signalfx/resource_signalfx_aws_integration.go index 767e3455..df63206a 100644 --- a/signalfx/resource_signalfx_aws_integration.go +++ b/signalfx/resource_signalfx_aws_integration.go @@ -161,8 +161,8 @@ func integrationAWSResource() *schema.Resource { "poll_rate": &schema.Schema{ Type: schema.TypeInt, Optional: true, - Description: "AWS poll rate (in seconds). Between `60` and `300`.", - ValidateFunc: validation.IntBetween(60, 300), + Description: "AWS poll rate (in seconds). Between `60` and `600`.", + ValidateFunc: validation.IntBetween(60, 600), }, "external_id": &schema.Schema{ Type: schema.TypeString, From 4914fcb6fa43a9d5e33fd8bc9bf7f7d1d4de4b90 Mon Sep 17 00:00:00 2001 From: Karol Hadala Date: Thu, 1 Jul 2021 14:08:28 +0200 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 85b91ed3..6273bff2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 6.7.5 + +BUGFIXES +* resource/signalfx_aws_integration: Allow specifying a poll rate for AWS integration to up to 10 minutes. [#307](https://github.com/splunk-terraform/terraform-provider-signalfx/pull/307) + ## 6.7.4 BUGFIXES