Skip to content

Commit

Permalink
Merge pull request #252 from jim-billy/TERRAFORM_PROVIDER_SITE24X7_MA…
Browse files Browse the repository at this point in the history
…IN_BRANCH

Bug Fix #240 - Supported severity '0' in threshold profile resource
  • Loading branch information
jim-billy-zoho authored Apr 16, 2024
2 parents c89351b + a9bc691 commit 7542364
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site24x7/threshold_profile.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ var ThresholdProfileSchema = map[string]*schema.Schema{
"severity": {
Type: schema.TypeInt,
Required: true,
ValidateFunc: validation.IntInSlice([]int{2, 3}), // Trouble or Critical
ValidateFunc: validation.IntInSlice([]int{0, 2, 3}), // Trouble or Critical
},
"comparison_operator": {
Type: schema.TypeInt,
Expand Down

0 comments on commit 7542364

Please sign in to comment.