Skip to content

Commit

Permalink
Merge pull request hashicorp#19515 from Kostavro/b-synthetics-canary-…
Browse files Browse the repository at this point in the history
…minimum-timeout

resource/aws_synthetics_canary: fix minimum timeout_in_seconds
  • Loading branch information
ewbankkit authored May 25, 2021
2 parents 66f688f + 0027824 commit 5e82a52
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/19515.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
resource/aws_synthetics_canary: Change minimum `timeout_in_seconds` in `run_config` from `60` to `3`
```
2 changes: 1 addition & 1 deletion aws/resource_aws_synthetics_canary.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func resourceAwsSyntheticsCanary() *schema.Resource {
"timeout_in_seconds": {
Type: schema.TypeInt,
Optional: true,
ValidateFunc: validation.IntBetween(60, 14*60),
ValidateFunc: validation.IntBetween(3, 14*60),
Default: 840,
},
},
Expand Down

0 comments on commit 5e82a52

Please sign in to comment.