Skip to content

Commit

Permalink
Fix AWS integration poll rate validation
Browse files Browse the repository at this point in the history
Signalfx API accepts a poll rate between 60 and 600.
  • Loading branch information
khadalasfx committed Jul 1, 2021
1 parent d8ad889 commit 84d2881
Showing 1 changed file with 2 additions and 2 deletions.
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 84d2881

Please sign in to comment.