-
Notifications
You must be signed in to change notification settings - Fork 319
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
Add cacert_file
and insecure
options to the provider.
#5
Add cacert_file
and insecure
options to the provider.
#5
Conversation
These settings can be used to configure the level of SSL verification performed by the provider. * `cacert_file` allows for the provision of an alternate ca cert, for locally-signed or self-signed operations. * `insecure` allows SSL verification to be turned off completely. It is not suggested as a first option. Targets https://github.com/terraform-providers/terraform-provider-gitlab/issues/4
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.
Hey @richardc
Thanks for this PR - apologies for the delay in reviewing this; I've taken a look and this LGTM :)
Thanks!
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.
LGTM
So I'm a little confused, if this has two approvals, why's it not been merged? |
@richardc in general we tend to approve and then let the original contributor merge (when they have permission) - but I'll merge this now :) |
@tombuildsstuff is that flow documented somewhere? I don't see it in the README.md and there's no CONTRIBUTING.md |
@richardc I've found this in the main repository: https://github.com/hashicorp/terraform/blob/master/docs/maintainer-etiquette.md#merging (it should probably be linked from the CONTRIBUTING.md in each provider though) :) |
Add `cacert_file` and `insecure` options to the provider.
These settings can be used to configure the level of SSL verification
performed by the provider.
cacert_file
allows for the provision of an alternate ca cert, forlocally-signed or self-signed operations.
insecure
allows SSL verification to be turned off completely. It isnot suggested as a first option.
Targets https://github.com/terraform-providers/terraform-provider-gitlab/issues/4