Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/terashim/shiny-on-cloud-run


https://github.com/terashim/shiny-on-cloud-run

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# Shiny on Cloud Run with OAuth2

Shinyアプリをコンテナ化し、Cloud Runにデプロイする。
サイドカーコンテナでOAuth2認証を行い、認証済みのユーザーのみがアクセスできるようにする。

### アーキテクチャ

```mermaid
graph LR
A[ユーザー] -->|サービスへのアクセス| B[ingress]
B -->|認証済みリクエストのみ転送| C[shiny]
B -->|OAuth2リクエスト転送| D[oauth2_proxy]
```