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
Copy file name to clipboardExpand all lines: README.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -118,6 +118,22 @@ Sample dashboard configurations can be found in the `/samples` folder in this re
118
118
|Widget|Widgets are components that have two functions: render and getData. getData is called in the API’s server and is used to make external requests, do computations, etc. Once it is called, it sets some data on the widget itself that’s passed back to the frontend, where render is called to display the widget.
119
119
|Providers|Providers are the beating hearts of the Console. They can be long running and run in the background. They may be passed to widgets to provide sensitive information or long-lived information, whereas widgets are better written as quick request/response styled objects.
120
120
121
+
### Providers
122
+
Currently supports AWS with plans to add others! AWS provider can be configured with local profiles or Access/Secret keys.
123
+
#### AWS
124
+
```
125
+
providers:
126
+
AwsLocalProvider:
127
+
id: AwsLocalProvider
128
+
type: AwsCredentialsProvider
129
+
credentials:
130
+
# Option A: local credentials
131
+
profileName: default
132
+
# Option B: Access/Secret keys (required when deploying with ops-cli deploy)
0 commit comments