Skip to content

Commit

Permalink
Merge pull request #307 from khadalasfx/fix-aws-integration-poll-rate…
Browse files Browse the repository at this point in the history
…-validation

Fix AWS integration poll rate validation
  • Loading branch information
jrcamp authored Jul 1, 2021
2 parents d8ad889 + 4914fcb commit 671604a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions signalfx/resource_signalfx_aws_integration.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 671604a

Please sign in to comment.