The `vault_gcp_secret_static_account_key` resource for Vault Provider

Hi Community,

I am looking for Terraform resource in Vault Provider for GCP service account key managed by Vault static account.

I use vault_gcp_secret_static_account resource to create Vault static account. To create GCP service account key with this static account, I use:


$ vault read gcp/static-account/<STATIC_ACCOUNT_NAME>/key

or Terraform Data Sources:


data "vault_generic_secret" "example" {

path = "gcp/static-account/<STATIC_ACCOUNT_NAME>/key"

}

It would be great to manage GCP service account keys by Vault static account with Vault Provider, but not with Google Cloud Provider (e.g., google_service_account_key resource).

Does such Terraform resource (vault_gcp_secret_static_account_key) already exist? Are there plans for creation?