Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/terashim/shiny-on-cloud-run
https://github.com/terashim/shiny-on-cloud-run
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/terashim/shiny-on-cloud-run
- Owner: terashim
- Created: 2024-02-12T10:33:35.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-02-22T20:36:57.000Z (11 months ago)
- Last Synced: 2024-02-22T21:39:13.650Z (11 months ago)
- Language: R
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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]
```