We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents be8e6c9 + 5e35064 commit c89c66bCopy full SHA for c89c66b
1 file changed
content/code-security/supply-chain-security/configuration-options-for-dependency-updates.md
@@ -767,6 +767,19 @@ registries:
767
```
768
{% endraw %}
769
770
+The `docker-registry` type can also be used to pull from Amazon ECR using static AWS credentials.
771
+
772
+{% raw %}
773
+```yaml
774
+registries:
775
+ ecr-docker:
776
+ type: docker-registry
777
+ url: https://1234567890.dkr.ecr.us-east-1.amazonaws.com
778
+ username: ${{secrets.ECR_AWS_ACCESS_KEY_ID}}
779
+ password: ${{secrets.ECR_AWS_SECRET_ACCESS_KEY}}
780
+```
781
+{% endraw %}
782
783
#### `git`
784
785
The `git` type supports username and password.
@@ -907,4 +920,4 @@ registries:
907
920
url: https://rubygems.pkg.github.com/octocat/github_api
908
921
token: ${{secrets.MY_GITHUB_PERSONAL_TOKEN}}
909
922
910
-{% endraw %}
923
0 commit comments