Skip to content

Commit

Permalink
fix protection status (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcorrigan714 authored Apr 19, 2023
1 parent ec30e49 commit 4460c7b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ func flattenBranchControlCheck(d *schema.ResourceData, branchControlCheck *pipel
}
d.Set("ignore_unknown_protection_status", value)
} else {
return fmt.Errorf("allowUnknownStatusBranch input not found")
// Variable groups don't appear to support this property
d.Set("ignore_unknown_protection_status", false)
}
} else {
return fmt.Errorf("inputs not found")
Expand Down

0 comments on commit 4460c7b

Please sign in to comment.