OpenFGA
OpenFGA
  • Видео 40
  • Просмотров 8 814

Видео

OpenFGA Community Meeting - December 2024
Просмотров 78Месяц назад
OpenFGA Community Meeting - December 2024
[DEMO] Materialize Integration
Просмотров 106Месяц назад
Presented at the October, 2024 OpenFGA Community Meeting. Presented by: Tyler Nix Product Manager - Okta and Joshua Jones Principal Software Engineer - Okta Watch the full video here: ruclips.net/video/LITUfwqpNIo/видео.html Join the OpenFGA Community: CNCF Slack (#openfga): communityinviter.com/apps/clo... GitHub: github.com/openfga Reddit: reddit.com/r/openfga X: x.com/openfga Mastodon: masto...
OpenFGA Community Meeting - November 2024
Просмотров 89Месяц назад
0:00 Agenda & Introductions 3:59 Just Shipped 5:08 OpenFGA Journey - Zeiss 10:00 [DEMO] OpenAPI Extensions 16:44 [DEMO] Terraform Provider 30:50 [DEMO] Batch Check API 41:35 Roadmap: Now/Next 41:47 Community News
OpenFGA Modeling Guide: Groups
Просмотров 2072 месяца назад
Let's organize our users into groups, and make some authorization decisions based on these groups.
OpenFGA Modeling Guide: Relationship-based ABAC
Просмотров 2212 месяца назад
Let's use relationships to make ABAC style decisions.
OpenFGA Modeling Guide: Public Access
Просмотров 2272 месяца назад
How can you give public access to resources using OpenFGA? Let's model it together,
OpenFGA Modeling Guide: Application Access
Просмотров 1392 месяца назад
Sometimes, you want to grant access to entities other than users, for example applications. Let's add support for application access to our authorization model.
OpenFGA Modeling Guide: Multitenancy
Просмотров 3102 месяца назад
What is multitenancy and how can I implement it into my OpenFGA model
OpenFGA Modeling Guide: Conditional Relationships
Просмотров 1962 месяца назад
Throw some conditions into the mix and make our decisions depend on both relationships and conditional logic.
OpenFGA Modeling Guide: Super Admin
Просмотров 1772 месяца назад
Learn how to provide super admin access to the selected few.
OpenFGA Modeling Guide: Custom Roles
Просмотров 1712 месяца назад
After organizations and groups, let's add another often-used collection, roles.
OpenFGA Modeling Guide: Fine Grained API Access
Просмотров 1432 месяца назад
Limit the access applications can have by adding some fine-grained control over the resources they can access to our authorization model.
OpenFGA Modeling Guide: Creating your first OpenFGA model
Просмотров 4322 месяца назад
Let's step trough our first OpenFGA model, look at how to define types, relations and how inheritance can work.
OpenFGA Modeling Guide: What is OpenFGA and why do I need an authorization model
Просмотров 4682 месяца назад
We'll quickly explain what OpenFGA is, how it works, and how an Authorization Model comes into play.
[DEMO] Client Side Caching
Просмотров 2113 месяца назад
[DEMO] Client Side Caching
[DEMO] Modular Authorization
Просмотров 3933 месяца назад
[DEMO] Modular Authorization
OpenFGA Community Meeting - October 2024
Просмотров 2433 месяца назад
OpenFGA Community Meeting - October 2024
[DEMO] OpenTelemetry in OpenFGA
Просмотров 1273 месяца назад
[DEMO] OpenTelemetry in OpenFGA
[DEMO] OpenFGA meets Envoy
Просмотров 1493 месяца назад
[DEMO] OpenFGA meets Envoy
[DEMO] OpenFGA Kubernetes Operator
Просмотров 1313 месяца назад
[DEMO] OpenFGA Kubernetes Operator
OpenFGA Community Meeting - September 2024
Просмотров 2154 месяца назад
OpenFGA Community Meeting - September 2024
OpenFGA Community Meeting - August 2024
Просмотров 995 месяцев назад
OpenFGA Community Meeting - August 2024
OpenFGA Community Meeting - July 2024
Просмотров 1666 месяцев назад
OpenFGA Community Meeting - July 2024
OpenFGA Community Meeting - June 2024
Просмотров 1937 месяцев назад
OpenFGA Community Meeting - June 2024
OpenFGA Community Meeting - May 2024
Просмотров 1798 месяцев назад
OpenFGA Community Meeting - May 2024
OpenFGA Modular Models Demo
Просмотров 8148 месяцев назад
OpenFGA Modular Models Demo
OpenFGA Community Meeting - April 2024
Просмотров 3169 месяцев назад
OpenFGA Community Meeting - April 2024
OpenFGA Community Meeting - March 2024
Просмотров 59210 месяцев назад
OpenFGA Community Meeting - March 2024
OpenFGA Community Meeting - February 2024
Просмотров 18711 месяцев назад
OpenFGA Community Meeting - February 2024

Комментарии

  • @matthewhartz9235
    @matthewhartz9235 20 дней назад

    Is there a better way to say "This app has access to all organizations (IE tenant)"?

  • @localaurent
    @localaurent Месяц назад

    Hi. Just letting you know that this video is not properly ordered in your Modeling Guides :)

  • @keithwiggins4987
    @keithwiggins4987 2 месяца назад

    Would you not want to handle multitenancy by creating a separate store per tenant?

    • @OpenFGA
      @OpenFGA Месяц назад

      Great question! It would also be possible to create a new store per tenant In OpenFGA, but we tend to use stores to separate applications, not tenants. A store_id is a field in the OpenFGA database. All stores share the same database. If you want one database per tenant you'll need an openfga instance per tenant.

  • @programmer1356
    @programmer1356 2 месяца назад

    Very interesting 'alternative' to RBAC. Thank you.

  • @amjads8971
    @amjads8971 10 месяцев назад

    Now what is this

  • @buzz1ebee
    @buzz1ebee 10 месяцев назад

    The spring security method security stuff looks a lot like what I ended up setting up for my nest js app. Really nice! I ended up also creating a conditional check decorator as well as the simple check decorator. For some routes a query param is sent for one of X different entities/context, so the check will change depending on which params were sent. The indexes look great too. Search with permissions still feels a bit unergonomic, so it's great to see improvements continuing. Does it only work for assigned relations? Or could it be used for inferred relations? I.e. a group member has can_view on documents which that group is assigned to, then you can have a view which is all users with can view on that document, or documents the user can view? Some codegen to drop and recreate views as a migration.SQL file would be handy. The cli explorer was great too. I might try it on my staging server, using the cli via docker from the aws console is a bit fiddly. List users will also be very welcome!! Atm I have do do some queries to figure out who might have access on our side, then create a bunch of batch checks to filter that list.

    • @OpenFGA
      @OpenFGA 10 месяцев назад

      It would be great if you could share it now you handled it in nest-js! :) About indexes, yes, it works with inferred relations. We kept exploring that path and we'll have more to share on our next meeting! If you want to share what you did with Nest JS you'd be welcome! :)

    • @buzz1ebee
      @buzz1ebee 9 месяцев назад

      ​@@OpenFGA sorry I've only just seen your message! Where can I find out about the May meeting? I keep missing them. Is there a schedule somewhere?

  • @buzz1ebee
    @buzz1ebee 11 месяцев назад

    Another great update as always. I'll try and attend next time. The export/import functionality will be super useful. Modular models looks really nice. List users will be a great help for my app so I'm very much looking forward to that. Great job team!

  • @buzz1ebee
    @buzz1ebee Год назад

    Thanks for posting these videos. I'm about to start implementing OpenFGA and have been keeping an eye on the community. Looking forward to start working with it. Keep up the great work team!

    • @OpenFGA
      @OpenFGA Год назад

      Thanks for the kind words Tom!