-
Notifications
You must be signed in to change notification settings - Fork 630
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
fix: add SSL.com as valid certificate authority for cloudflare_certificate_pack #4267
Conversation
changelog detected ✅ |
@@ -50,7 +50,7 @@ func resourceCloudflareCertificatePackSchema() map[string]*schema.Schema { | |||
Type: schema.TypeString, | |||
Required: true, | |||
ForceNew: true, | |||
ValidateFunc: validation.StringInSlice([]string{"digicert", "lets_encrypt", "google"}, false), | |||
ValidateFunc: validation.StringInSlice([]string{"digicert", "lets_encrypt", "google", ssl_com"}, false), | |||
Default: nil, | |||
Description: fmt.Sprintf("Which certificate authority to issue the certificate pack. %s", renderAvailableDocumentationValuesStringSlice([]string{"digicert", "lets_encrypt", "google"})), |
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.
we also should put the value here in the description and run the docs generation to pick up on it.
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.
Thanks for pointing that out. Ran make docs
and some other changes were picked up. Is ok to include them or should we leave those out ?
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.
yep, that's fine
This functionality has been released in v4.44.0 of the Terraform Cloudflare Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
What
Add
ssl_com
to the slice containing valid certificate authorities that can be used to manage acloudflare_certificate_pack
resourceWhy
ssl_com
in the API endpoint that lists certificate packs