packer-plugin-googlecompute icon indicating copy to clipboard operation
packer-plugin-googlecompute copied to clipboard

Support regional secrets

Open HauserV opened this issue 6 months ago • 0 comments

Description

Extend the recently added secrets manager data source (#29, PR #261) to support regional secrets.

Use Case(s)

Enable users with strict data residency and data sovereignty requirements to make use of the secret manager data source.

Potential configuration

data "googlecompute-secretsmanager" "test" {
  project_id  = var.project_id
  location    = "europe-west3" # <- new key
  name        = var.secret_name
  key         = var.key
}

Potential References

HauserV avatar Apr 25 '25 15:04 HauserV