Injectable FastAPI auth via OIDC
Project description
Armasec
Adding a security layer on top of your API can be difficult, especially when working with an OIDC platform. It’s hard enough to get your OIDC provider configured correctly. Armasec aims to take the pain out of securing your APIs routes.
Armasec is an opinionated library that attemtps to use the most obvious and commonly used workflows when working with OIDC and making configuration as simple as possible.
When using the Armasec helper class, you only need two configuration settings to get going:
Domain: the domain of your OIDC provider
Audience: An optional setting that restricts tokens to those intended for your API.
That’s it! Once you have those settings dialed in, you can just worry about checking the permissions scopes of your endpoints
Documentation
Documentation is hosted hosted on github.io at the Armasec homepage
Quickstart
Install armasec and uvicorn:
$ pip install armasec
Minimal Example (example.py)
import os
from armasec import Armasec
from fastapi import FastAPI, Depends
app = FastAPI()
armasec = Armasec(
os.environ.get("ARMASEC_DOMAIN"),
audience=os.environ.get("ARMASEC_AUDIENCE"),
)
@app.get("/stuff", dependencies=[Depends(armasec.lockdown("read:stuff"))])
async def check_access():
return dict(message="Successfully authenticated!")
Run the app
$ uvicorn –host 0.0.0.0 example:app
License
Distributed under the MIT License. See LICENSE for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file armasec-0.11.1.tar.gz
.
File metadata
- Download URL: armasec-0.11.1.tar.gz
- Upload date:
- Size: 15.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.0 CPython/3.8.10 Linux/5.15.0-1017-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 32ef10b09f30bc6e9793564c009edcfa737cb41bddf08d600c3cc2b73e328ca5 |
|
MD5 | 4f930d6fbf3e34f2bf5156b2aa51058c |
|
BLAKE2b-256 | 8d76fc8ca50e3fff09ba624080d754171a97f0b990ba9e13368a5183ef1f3699 |
File details
Details for the file armasec-0.11.1-py3-none-any.whl
.
File metadata
- Download URL: armasec-0.11.1-py3-none-any.whl
- Upload date:
- Size: 18.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.0 CPython/3.8.10 Linux/5.15.0-1017-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2276f963aa24666fc7d47c05778975c33d3dd5d8e36b6886a8e5f5fe77dca4cb |
|
MD5 | c647fdcf4b0517ff5bae0ba415c1bed7 |
|
BLAKE2b-256 | 0d0a12e25c2e729efd14514d1fbb3978981045590d1edb4564175f029644fd46 |