Skip to content
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

Merged
merged 5 commits into from
Oct 13, 2024

Conversation

lneves75
Copy link
Contributor

What

Add ssl_com to the slice containing valid certificate authorities that can be used to manage a cloudflare_certificate_pack resource

Why

Copy link
Contributor

github-actions bot commented Oct 10, 2024

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"})),
Copy link
Member

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.

Copy link
Contributor Author

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 ?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yep, that's fine

.changelog/4267.txt Outdated Show resolved Hide resolved
@jacobbednarz jacobbednarz merged commit 8b62b82 into cloudflare:master Oct 13, 2024
7 checks passed
@github-actions github-actions bot added this to the v4.44.0 milestone Oct 13, 2024
@lneves75 lneves75 deleted the fix-4266 branch October 14, 2024 09:20
Copy link
Contributor

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!

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Oct 15, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

cloudflare_certificate_pack certificate_authority validation is missing ssl_com
2 participants