Skip to content

Commit

Permalink
fix: Remove auth_string configuration (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmymy authored Mar 23, 2021
1 parent c552c19 commit 1b1b340
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ module "memorystore" {
|------|-------------|:----:|:-----:|:-----:|
| alternative\_location\_id | The alternative zone where the instance will be provisioned. | string | `"null"` | no |
| auth\_enabled | Indicates whether OSS Redis AUTH is enabled for the instance. If set to true AUTH is enabled on the instance. | bool | `"false"` | no |
| auth\_string | AUTH String set on the instance. This field will only be populated if auth_enabled is true | string | `"null"` | no |
| authorized\_network | The full name of the Google Compute Engine network to which the instance is connected. If left unspecified, the default network will be used. | string | `"null"` | no |
| connect\_mode | The connection mode of the Redis instance. Can be either DIRECT_PEERING or PRIVATE_SERVICE_ACCESS. The default connect mode if not provided is DIRECT_PEERING. | string | `"null"` | no |
| display\_name | An arbitrary and optional user-provided name for the instance. | string | `"null"` | no |
Expand Down
1 change: 0 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ resource "google_redis_instance" "default" {
labels = var.labels

auth_enabled = var.auth_enabled
auth_string = var.auth_string
}

module "enable_apis" {
Expand Down
6 changes: 0 additions & 6 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,3 @@ variable "auth_enabled" {
type = bool
default = false
}

variable "auth_string" {
description = "AUTH String set on the instance. This field will only be populated if auth_enabled is true"
type = string
default = null
}

0 comments on commit 1b1b340

Please sign in to comment.