Skip to content

Commit

Permalink
Add skip_verification to getConnectionDetailsCassandra
Browse files Browse the repository at this point in the history
  • Loading branch information
wmrmrx committed Oct 28, 2024
1 parent 5081f17 commit d698db1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions vault/resource_database_secret_backend_connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -2079,6 +2079,9 @@ func getConnectionDetailsCassandra(d *schema.ResourceData, prefix string, resp *
}
result["connect_timeout"] = timeout
}
if v, ok := data["skip_verification"]; ok {
result["skip_verification"] = v.(bool)
}
return result, nil
}
return nil, nil
Expand Down

0 comments on commit d698db1

Please sign in to comment.