Skip to content

Commit

Permalink
fix: make saml2_enable_sp_initiated bool throughout (#828)
Browse files Browse the repository at this point in the history
  • Loading branch information
reallocf committed Jan 21, 2022
1 parent d7ccabd commit b79988e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/resources/saml_integration.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ func CreateSAMLIntegration(d *schema.ResourceData, meta interface{}) error {
}

if _, ok := d.GetOk("saml2_enable_sp_initiated"); ok {
stmt.SetString(`SAML2_ENABLE_SP_INITIATED`, d.Get("saml2_enable_sp_initiated").(string))
stmt.SetBool(`SAML2_ENABLE_SP_INITIATED`, d.Get("saml2_enable_sp_initiated").(bool))
}

if _, ok := d.GetOk("saml2_snowflake_x509_cert"); ok {
Expand Down

0 comments on commit b79988e

Please sign in to comment.