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

Vertex AI Feature Store - destroy is not working #11850

Assignees
Labels

Comments

@jesus-orozco
Copy link

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request.
  • Please do not leave +1 or me too comments, they generate extra noise for issue followers and do not help prioritize the request.
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment.
  • If an issue is assigned to the modular-magician user, it is either in the process of being autogenerated, or is planned to be autogenerated soon. If an issue is assigned to a user, that user is claiming responsibility for the issue. If an issue is assigned to hashibot, a community member has claimed the issue already.

Terraform Version

Terraform v1.1.9
on linux_amd64

  • provider registry.terraform.io/hashicorp/google v4.24.0
  • provider registry.terraform.io/hashicorp/google-beta v4.24.0

Affected Resource(s)

  • google_vertex_ai_featurestore

Terraform Configuration Files

resource "random_id" "random_suffix" {
  byte_length = 3
}
resource "google_vertex_ai_featurestore" "featurestore" {
  provider      = google-beta
  project       = "xxxx"
  name          = "feature_store_${random_id.random_suffix.hex}"
  labels        = {}
  region        = "us-east4"
  force_destroy = true
  online_serving_config {
    fixed_node_count = 1
  }
}

Debug Output

Terraform apply debug output:
https://gist.github.com/jesus-orozco/3552f0863ebe6a0e240601590733b63a

Terraform destroy debug output:
https://gist.github.com/jesus-orozco/4ccb115fb79c713c54994a067f82e3eb

Expected Behavior

  1. Create a feature store resource using terraform.
  2. Destroy the resource using terraform.

Actual Behavior

  1. Resource is created correctly with terraform apply.
  2. Terraform destroy command fails with plugin error (see debug output for details).

Steps to Reproduce

  1. terraform apply
  2. terraform destroy

Important Factoids

  1. Authenticating as a user instead of a service account.
  2. Using Terraform version 1.1.9 instead of latest due to customer requirements.
  • #0000
@github-actions
Copy link

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Jul 22, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.