-
Notifications
You must be signed in to change notification settings - Fork 9.6k
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
provider/vcd: Add flags for unverified SSL/TLS #4811
Conversation
Hi @superseb! Thanks for opening a pull request - looks like there are some build issues, and also one or two whitespace formatting issues here - could you take a look at those and then we can merge this in? Agreed it's a useful flag - several other providers have this option. |
url = "${var.vcd_url}" | ||
vdc = "${var.vcd_vdc}" | ||
maxRetryTimeout = "${var.vcd_maxRetryTimeout}" | ||
allow_unverified_ssl = "${var.vcd_allow_unverified_ssl}" |
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.
This looks like a whitespace concern
ce2ebf7
to
6fe6ff4
Compare
Thanks for taking a look @jen20 . The build errors occur because a needed lib is not yet updated (hmrc/vmware-govcd#4), so I marked it as WIP. The docs are fixed, didn't appear like that on my end but should be good now. |
Dependency has been merged, retrigged CI by closing and reopening PR. Can you take a look @jen20 ? |
Yup, looks like this should fix it up! Thanks @superseb! |
provider/vcd: Add flags for unverified SSL/TLS
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Ability to configure to allow insecure SSL/TLS certificates. Useful for test environments that don't have a proper certificate (chain) or some appliances don't have proper certificates anyway. This should be identical behaviour as the configuration for the vSphere provider.
Before this can be merged, we have to wait for hmrc/vmware-govcd#4 to be merged. This then should be used in a new release.
This PR fixes #4620