Skip to main content
Filter by
Sorted by
Tagged with
-3 votes
0 answers
66 views

I need to implement role-based access control on the backend with postgresql, Prisma, and Express.js+TypeScript and the roles I have in mind so far are admin, manager, customer, delivery crew. I want ...
Fazle Rabbi Faiyaz's user avatar
0 votes
1 answer
37 views

In Neo4j, when assigning write privileges on a spicific node type for a role, I can deny write permission on some property on that node type, but also grant write permission on all the node's ...
Kt Student's user avatar
0 votes
0 answers
41 views

I'm probably misunderstanding this, but after many days I need to ask for help. I created an AppRegistration for my Web application (Blazor wasm) and then I created another AppRegistration for my API ...
RePinheiro's user avatar
0 votes
0 answers
240 views

This is my first post, I hope that somebody can help me... Here's my problem : I want to configure Kafka_ui, using Keycloak users as "admin" or "readonly" role, to centralize RBAC. ...
Psowl's user avatar
  • 1
-1 votes
1 answer
66 views

If I have two groups that are not root users that will access a container's directory structure, is there a way to fine tune permissions such that Group 1 can have WRITE permissions on /DIR1, but ...
C L's user avatar
  • 3
0 votes
1 answer
155 views

I have a scenario where I need to restrict access to a specific Azure resource to only one Azure Active Directory (AD) group. Here's the setup: Environment Details: The resources are deployed in a ...
play_something_good's user avatar
0 votes
1 answer
360 views

I’m trying to back up a virtual machine with disk encryption (both OS and data disks) using Recovery Services Vault in Azure. The key used for disk encryption is stored in Azure Key Vault, and I'm ...
Maxime C.'s user avatar
1 vote
0 answers
36 views

Context : Admin for a Kusto cluster and need to share kusto functions with report development team, without giving access to any underlying tables to query directly. Question : Is it possible to ...
caramel's user avatar
  • 11
0 votes
1 answer
99 views

We have a react front end and a python flask backend deployed in GCP cloud run, users are configured in google groups and authenticated via IAP. Now we want to setup role based access control in our ...
Sathish's user avatar
  • 131
0 votes
1 answer
178 views

I want to allow certain development team members access to the Azure Web App Development Tools. Preferably only the App Service Editor. I know I can grant "Website Contributor", but I'd ...
Damo's user avatar
  • 2,112
0 votes
1 answer
130 views

Let’s create a user and table with some data: CREATE ROLE admin; CREATE TABLE employee (empno int, ename text, address text, salary int, account_number text); INSERT INTO employee VALUES (1, 'john' ...
alexanoid's user avatar
  • 26.1k
-1 votes
1 answer
57 views

I am creating my first, simple RBAC login/signup page using Flask. This is my project structure ├── app.py ├── flask_api │   ├── __init__.py │   ├── config.py │   ├── extensions.py │   ├── models.py │ ...
armangrewal007's user avatar
1 vote
0 answers
31 views

I already have several SQL scripts that generate my tables in postgreSQL. Each script alterns the right access and it grants different access to several tables in different databases. Do you know if ...
Michele Belotti's user avatar
1 vote
2 answers
2k views

I am trying to create a data-plane role assignment for my Cosmos DB for my Azure Web App / Function app to access using their System-Assigned Managed Identity. I have tried assigning the Cosmos DB ...
pumpkinchugger's user avatar
0 votes
0 answers
81 views

I am trying to implement role-based protection in ReactJS (typescript) application. I have searched the web for this topic, there are many tutorials and confusions between typescript version, V6 react-...
John's user avatar
  • 475
1 vote
0 answers
176 views

I'm using the NestJs AuthGuard, with JwT and Casl, but I'm not understanding some concepts. Looking for some tutorials online I did this: My Ability Factory import { AbilityBuilder, ExtractSubjectType,...
user26427062's user avatar
-1 votes
1 answer
146 views

I'm a complete beginner, but I need to figure out how do use rbac on azure sql to grant access specifically to certain tables on the db (for now, with just standard reader privileges). How should I do ...
Antonio Fontoura's user avatar
0 votes
0 answers
61 views

In my database I have two distinct roles which have no special attributes and thus do not inherit. They act as (RBAC) permissions, and there are policies for each permission on multiple tables. How ...
Code4R7's user avatar
  • 3,152
3 votes
0 answers
264 views

We have CI/CD enabled for our Synapse environment, which automatically validates and deploys ARM templates to the target environments when master branch is updated. As such, we want to be able to ...
Elliot's user avatar
  • 69
0 votes
2 answers
539 views

I am attempting to provide access to someone on my account using least-required access by creating an RBAC rule in Azure that gives the person the ability to manage, create, and delete networking ...
Shad Christopherson's user avatar
1 vote
1 answer
656 views

I've been working on getting the list of RBAC roles assigned to an azure subscription to know which RBAC is assigned to a user or to an AD group. Based on the Microsoft website, I can do this using ...
Carlos Samayoa's user avatar
3 votes
0 answers
454 views

I have started with the Ory Keto implementation. I have started with basic functionalities as creating tuples and checking the permission for the users base od the JWT authorization. The basics works ...
z64's user avatar
  • 31
1 vote
1 answer
92 views

Which is the azure built-in role to use for least privilege that enables users to write to function app config? I think the required action is: Microsoft.Web/sites/config/write I checked this site and ...
Rob Bowman's user avatar
  • 8,889
0 votes
1 answer
75 views

I am writing a server side application that will run on an internal server (a physical box, not inside Azure). The application needs access to a blob storage container. The data in the blob storage is ...
Sandroid's user avatar
3 votes
1 answer
599 views

I use gRPC-Gateway for RESTful API and gRPC server. Here is my code: func main() { ctx := context.Background() ctx, cancel := context.WithCancel(ctx) defer cancel() // rest server ...
Arif's user avatar
  • 6,588

1
2 3 4 5
24