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: docs/index.md
+55Lines changed: 55 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1775,6 +1775,61 @@ Last, run your application inside a Docker container and supply your newly creat
1775
1775
docker service create --name pydantic-with-secrets --secret my_secret_data pydantic-app:latest
1776
1776
```
1777
1777
1778
+
## AWS Secrets Manager
1779
+
1780
+
You must set one parameter:
1781
+
1782
+
-`secret_id`: The AWS secret id
1783
+
1784
+
You must have the same naming convention in the key value in secret as in the field name. For example, if the key in secret is named `SqlServerPassword`, the field name must be the same. You can use an alias too.
1785
+
1786
+
In Key Vault, nested models are supported with the `--` separator. For example, `SqlServer--Password`.
1787
+
1788
+
Key Vault arrays (e.g. `MySecret--0`, `MySecret--1`) are not supported.
0 commit comments