You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 20, 2025. It is now read-only.
Below is a sequence diagram showing the sequence of events that occur when a developer registers a bucket with Nitric. Including, optionally registering event handlers for file change events.
90
+
Below is the sequence of events that occur when a developer registers a bucket with Nitric. Including, optionally registering event handlers for file change events.
91
91
92
92
```mermaid
93
93
sequenceDiagram
@@ -119,7 +119,7 @@ sequenceDiagram
119
119
120
120
### Runtime Sequence
121
121
122
-
Below is a sequence diagram showing the runtime flow of a storage operation in a Nitric application, using the Nitric SDK. The SDK forwards the request to the Nitric runtime, which converts the request and forwards it to the cloud storage API. The plugin nature of the Nitric runtime allows for seamless integration with different cloud providers.
122
+
Below is the runtime flow of a storage operation in a Nitric application, using the Nitric SDK. The SDK forwards the request to the Nitric runtime, which converts the request and forwards it to the cloud storage API. The plugin nature of the Nitric runtime allows for seamless integration with different cloud providers.
Below is the sequence of events that occur when a developer registers a secret with Nitric. This includes defining the secret and its access requirements, which are then provisioned by the Nitric provider using IaC.
76
+
77
+
```mermaid
78
+
sequenceDiagram
79
+
participant Worker as App Worker(s)
80
+
participant SDK as Nitric SDK
81
+
participant Nitric as Nitric CLI
82
+
participant Provider as Nitric Provider <br> (plugin)
83
+
participant IAC as IaC <br> (e.g. Terraform)
84
+
85
+
Worker->>SDK: Register Secret
86
+
Worker->>SDK: Register Access Requirements
87
+
SDK->>Nitric: Register Secret
88
+
SDK->>Nitric: Register Access Requirements
89
+
90
+
Nitric->>Provider: Forward Nitric Spec
91
+
Provider->>IAC: Provision Secret
92
+
Provider->>IAC: Provision IAM
93
+
```
94
+
95
+
### Runtime Sequence
96
+
97
+
Below is a sequence diagram showing the runtime flow of a secret operation in a Nitric application, using the Nitric SDK. The SDK forwards the request to the Nitric runtime, which converts the request and forwards it to the cloud secrets management API. The plugin nature of the Nitric runtime allows for seamless integration with different cloud providers.
0 commit comments