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 definition of ovh_iploadbalancing_ssl #733

Merged
merged 1 commit into from
Oct 1, 2024

Conversation

beluc
Copy link

@beluc beluc commented Sep 27, 2024

Description

ovh_iploadbalancing_ssl: Changing service_name, certificate, key or chain must trigger a full replace

Type of change

  • Bug fix (non-breaking change which fixes an issue)

How Has This Been Tested?

  • make testacc TESTARGS="-run TestAccIpLoadbalancingSsl_basic"
  • make testacc TESTARGS="-run TestAccIpLoadbalancingSsl_importBasic"

Checklist:

  • My code follows the style guidelines of this project
  • I have performed a self-review of my code
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings or issues
  • I have added acceptance tests that prove my fix is effective or that my feature works
  • New and existing acceptance tests pass locally with my changes
  • I ran successfully go mod vendor if I added or modify go.mod file

@beluc beluc marked this pull request as draft September 27, 2024 10:18
@tduboys
Copy link

tduboys commented Sep 27, 2024

There is still an issue on imported certificates, as the API only returns fingerprint, not the cert/chain/key values
So if I import my resource, the local state does not contain the cert/chain/key, and on next run, terraform compares my values to null ones on the state, not with the fingerprint, and triggers a replacement.

some ideas to fix :

  • do not compare certs given on the HCL code, but a generated fingerprint to the local known fingerprint to trigger replacement (probably the better but need ssl lib)
  • set cert/chain/key as optional, but trigger an error if not provided for a create operation only
  • patch iplb api to return all the datas, not only the fingerprint

@beluc
Copy link
Author

beluc commented Sep 27, 2024

@beluc
Copy link
Author

beluc commented Sep 27, 2024

maybe we can deal with fingerprint using https://developer.hashicorp.com/terraform/plugin/framework/resources/plan-modification#requiresreplaceif

this do the job !

@beluc beluc marked this pull request as ready for review September 27, 2024 14:47
@beluc beluc force-pushed the resource_iploadbalancing_ssl branch 3 times, most recently from 3bffa9c to e9f5640 Compare September 27, 2024 14:56
@@ -20,6 +20,11 @@ resource "ovh_iploadbalancing_ssl" "sslname" {
certificate = "..."
key = "..."
chain = "..."

# use this if ssl is configured as frontend default_ssl
Copy link
Collaborator

Choose a reason for hiding this comment

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

is this really needed now that you added several RequireReplace on the fields ?

Copy link

Choose a reason for hiding this comment

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

is this really needed now that you added several RequireReplace on the fields ?

As we cant remove a ssl object if it's used as default ssl on a frontend, the create_before_destroy option is needed


if buf.String() == data.Fingerprint.ValueString() {
// This ssl was created from a CERT/KEY/CHAIN but it's gone from the state.
// This happen when we import this ressource,
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
// This happen when we import this ressource,
// This happens when we import this ressource,

amstuta
amstuta previously approved these changes Oct 1, 2024
@beluc beluc force-pushed the resource_iploadbalancing_ssl branch from e9f5640 to c40d426 Compare October 1, 2024 07:56
@amstuta amstuta merged commit f8020c2 into ovh:master Oct 1, 2024
@beluc beluc deleted the resource_iploadbalancing_ssl branch October 24, 2024 12:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants