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

r/me_ssh_key: fix setting key default property and handle key not found error #158

Merged
merged 2 commits into from
Nov 26, 2020

Conversation

invidian
Copy link
Contributor

No description provided.

@invidian invidian force-pushed the ssh-keys-improvements branch from 95ed15e to 948d22d Compare September 18, 2020 12:47
@invidian invidian changed the title ovh_me_ssh_key: fix setting key default property and handle key not found error r/me_ssh_key: fix setting key default property and handle key not found error Sep 18, 2020
@yanndegat yanndegat force-pushed the master branch 2 times, most recently from cf9f477 to bdcda64 Compare November 18, 2020 13:56
Copy link
Member

@pgaxatte pgaxatte left a comment

Choose a reason for hiding this comment

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

Hello @invidian,

Thank you for your PR but I'm not sure I understand what you are trying to solve.

It seems that you want terraform to automatically re-create a key that has been manually deleted between two runs of terraform.

This is not an expected behavior of terraform: if a resource has been deleted, the user should see that it needs to be re-created and must agree on the plan to add it. There must not be any automatic creation.

Would you consider removing this part in resourceMeSshKeyRead but keep the rest of the fix?

@invidian
Copy link
Contributor Author

Hey @pgaxatte, thanks for the reply.

No resources will be "automatically" re-created with this PR. This is what confirmation in terraform apply and terraform plan sub-commands are for.

Most of Terraform providers handle resource life-cycle this way. If resource has been removed by the external process, Terraform will remove it from internal state and then terraform apply will show, that it should be created from scratch (not updated or re-created).

Currently, if one removes SSH key by hand, one must run terraform state rm manually to be able to run terraform apply, which I don't think is a correct behavior, hence the PR.

@pgaxatte
Copy link
Member

Thanks for the clarification.

You're right about the removal in the state so returning nil when the SSH keypair is not present is the right thing to do.

However, it would be best if you used the error code from the GET (here) instead of listing the keys to see if it's not present.

An example of such an error handling can be found here:

if err := client.Get(endpoint, vcp); err != nil {

It was mistakenly implemented, so rather than passing parameters to the
function, parameters gets passed to response struct.

Signed-off-by: Mateusz Gozdek <[email protected]>
So if key gets manually removed, Terraform is able to re-create it.

Signed-off-by: Mateusz Gozdek <[email protected]>
@invidian invidian force-pushed the ssh-keys-improvements branch from 948d22d to 4c2c3e5 Compare November 26, 2020 11:18
@invidian
Copy link
Contributor Author

Right, thanks for the suggestion. I implemented it.

Perhaps similar fix should be applied to all other resources, for consistency.

@invidian invidian requested a review from pgaxatte November 26, 2020 11:19
@pgaxatte
Copy link
Member

You're right we'll have to sieve through all our code to see where we can apply the same reasoning

@yanndegat yanndegat merged commit 40ad0c4 into ovh:master Nov 26, 2020
@invidian invidian deleted the ssh-keys-improvements branch November 26, 2020 13:18
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.

3 participants