We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the user need
I want Snyk to supply a target JSON list for the ACR or allow CSV Import instead JSON
As of now, I am using the following bash script to generate the list of images from the ACR. This generate the CSV
registry_name='sec' destination='snyk-auto-import/output.csv' az acr login --name $registry_name touch $destination repos="$(az acr repository list -n $registry_name --output tsv)" for i in $repos; do images="$(az acr repository show-tags -n $registry_name --repository $i --output tsv --orderby time_desc)" for j in $images; do echo $i":"$j >> $destination; done; done; cat output.csv
Describe expected behaviour
It would be nice if snyk can supply the target json similar SCM target - https://github.com/snyk-tech-services/snyk-api-import/blob/master/docs/import-data.md or allow the user to supply the CSV
Additional context
This feature can be available in the Integration UI, rather than running the additional script
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the user need
I want Snyk to supply a target JSON list for the ACR or allow CSV Import instead JSON
As of now, I am using the following bash script to generate the list of images from the ACR. This generate the CSV
Describe expected behaviour
It would be nice if snyk can supply the target json similar SCM target - https://github.com/snyk-tech-services/snyk-api-import/blob/master/docs/import-data.md or allow the user to supply the CSV
Additional context
This feature can be available in the Integration UI, rather than running the additional script
The text was updated successfully, but these errors were encountered: