diff --git a/README.md b/README.md index c8129a0c..5497afaf 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,7 @@ module "memorystore" { | current\_location\_id | The current zone where the Redis endpoint is placed. | | host | The IP address of the instance. | | id | The memorystore instance ID. | +| persistence\_iam\_identity | Cloud IAM identity used by import/export operations. Format is 'serviceAccount:'. May change over time | | region | The region the instance lives in. | diff --git a/examples/basic/memorystore.tf b/examples/basic/memorystore.tf index 97a02c21..408a06bc 100644 --- a/examples/basic/memorystore.tf +++ b/examples/basic/memorystore.tf @@ -15,7 +15,7 @@ */ provider "google" { - version = "~> 3.14.0" + version = "~> 3.34.0" } module "memorystore" { diff --git a/examples/basic/versions.tf b/examples/basic/versions.tf index 60190546..03fae476 100644 --- a/examples/basic/versions.tf +++ b/examples/basic/versions.tf @@ -17,6 +17,6 @@ terraform { required_version = ">= 0.12" required_providers { - google = ">= 3.14.0" + google = ">= 3.34.0" } } diff --git a/outputs.tf b/outputs.tf index ebdc1f71..e7e4da62 100644 --- a/outputs.tf +++ b/outputs.tf @@ -34,3 +34,7 @@ output "current_location_id" { value = google_redis_instance.default.current_location_id } +output "persistence_iam_identity" { + description = "Cloud IAM identity used by import/export operations. Format is 'serviceAccount:'. May change over time" + value = google_redis_instance.default.persistence_iam_identity +} diff --git a/versions.tf b/versions.tf index 60190546..03fae476 100644 --- a/versions.tf +++ b/versions.tf @@ -17,6 +17,6 @@ terraform { required_version = ">= 0.12" required_providers { - google = ">= 3.14.0" + google = ">= 3.34.0" } }