Skip to content

Commit

Permalink
feat: Add persistence_iam_identity to module output (#36)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Increased minimum Google provider version to 3.34.0.
  • Loading branch information
albertomardomingo authored Jan 6, 2021
1 parent a582a36 commit c3a9a88
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |

<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
Expand Down
2 changes: 1 addition & 1 deletion examples/basic/memorystore.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

provider "google" {
version = "~> 3.14.0"
version = "~> 3.34.0"
}

module "memorystore" {
Expand Down
2 changes: 1 addition & 1 deletion examples/basic/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
terraform {
required_version = ">= 0.12"
required_providers {
google = ">= 3.14.0"
google = ">= 3.34.0"
}
}
4 changes: 4 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
terraform {
required_version = ">= 0.12"
required_providers {
google = ">= 3.14.0"
google = ">= 3.34.0"
}
}

0 comments on commit c3a9a88

Please sign in to comment.