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

[Bug]: consumer snowflake_shared_database cannot be destroyed if provider share is dropped/re-created #3096

Open
1 task
simonepm opened this issue Sep 20, 2024 · 2 comments
Assignees
Labels
bug Used to mark issues with provider's incorrect behavior

Comments

@simonepm
Copy link

Terraform CLI Version

1.9.5

Terraform Provider Version

0.96.0

Terraform Configuration

resource "snowflake_shared_database" "DB_NAME" {
  name = "DB_NAME"
  from_share = "ORG_NAME.ACC_NAME.DB_NAME"
}

Category

category:resource

Object type(s)

resource:share

Expected Behavior

Destroy operation for snowflake_shared_database should not be dependent on the accessibility of its underlying provider database to be able to perform a destruction when needed. Such access can be lost in case the provider database and share gets re-created.

Actual Behavior

When creating an imported database via snowflake_shared_database, if the provider database gets re-created we need to re-create the consumer database as well.

Destroy of snowflake_shared_database fails due to:
Shared database is no longer available for use. It will need to be re-created if and when the publisher makes it available again.

Steps to Reproduce

Create a share from account A to account B
Deploy a snowflake_shared_database in account B sourcing from account A share
Re-create share in account A
Destroy snowflake_shared_database in account B (ERROR)

How much impact is this issue causing?

Low

Logs

No response

Additional Information

No response

Would you like to implement a fix?

  • Yeah, I'll take it 😎
@simonepm simonepm added the bug Used to mark issues with provider's incorrect behavior label Sep 20, 2024
@sfc-gh-jcieslak sfc-gh-jcieslak self-assigned this Sep 20, 2024
@sfc-gh-jcieslak
Copy link
Collaborator

Hey @simonepm 👋
Thanks for reporting the issue. I'll take a look at it as soon as possible.

@simonepm
Copy link
Author

Thanks! As a workaround I am using:

resource "snowflake_unsafe_execute" "CREATE_DATABASE_DB_NAME" {
execute = "CREATE DATABASE DB_NAME FROM SHARE ORG_NAME.ACC_NAME.DB_NAME"
revert = "DROP DATABASE DB_NAME"
}

snowflake_unsafe_execute does not try to use the database context and then works without throwing errors.

@simonepm simonepm changed the title [Bug]: consumer snowflake_shared_database cannot be destroyed if provider database is dropped/re-created [Bug]: consumer snowflake_shared_database cannot be destroyed if provider share is dropped/re-created Sep 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Used to mark issues with provider's incorrect behavior
Projects
None yet
Development

No branches or pull requests

2 participants