mirror of
https://github.com/minio/minio.git
synced 2025-01-05 12:03:21 -05:00
54ae364def
This PR introduces two new features - AWS STS compatible STS API named AssumeRoleWithClientGrants ``` POST /?Action=AssumeRoleWithClientGrants&Token=<jwt> ``` This API endpoint returns temporary access credentials, access tokens signature types supported by this API - RSA keys - ECDSA keys Fetches the required public key from the JWKS endpoints, provides them as rsa or ecdsa public keys. - External policy engine support, in this case OPA policy engine - Credentials are stored on disks
5 lines
192 B
Bash
5 lines
192 B
Bash
export MINIO_ACCESS_KEY=minio
|
|
export MINIO_SECRET_KEY=minio123
|
|
export MINIO_IAM_JWKS_URL=http://localhost:9763/oauth2/jwks
|
|
export MINIO_IAM_OPA_URL=http://localhost:8181/v1/data/httpapi/authz
|