-
Notifications
You must be signed in to change notification settings - Fork 70
Pass a cert-file argument instead of full cert blob. #1189
New issue
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
Conversation
|
As mentioned by @jsocol earlier the failing CI https://github.com/fastly/cli/actions/runs/8881360752/job/24383545720?pr=1189 is because of a change that rolled out in the GitHub runners which resulted in a change in macos-latest architecture. So rebasing |
|
Thanks @jsocol and @Integralist for the tips! Will be a few days before I have time to work on this again. |
3afdf25 to
370feba
Compare
Integralist
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking good. Some comments to be addresses + the CI is failing to run the tests successfully (looks to be failing on TestTLSCustomCertCreate/validate_custom_cert_is_submitted)
9b704f3 to
582dbf9
Compare
…to pass in a path to a certificate file Previously users were required to pass in the full certificate contents via the --cert-blob argument, which is cumbersome and error-prone. This allows users to specify a path to a certificate making this command easier to use. The new argument --cert-path is mutually exclusive with --cert-blob and the command will return an error if both are specified.
a8efcbb to
58f82af
Compare
Adds --cert-path argument to tls-custom certificate create command to pass in a path to a certificate file
Previously users were required to pass in the full certificate contents via the --cert-blob argument, which is cumbersome and error-prone. This allows users to specify a path to a certificate making this command easier to use.
The new argument --cert-path is mutually exclusive with --cert-blob and the command will return an error if both are specified.