Skip to content

Commit

Permalink
Merge pull request #64 from remerge/DSP-774-fix-error-using-reserved-…
Browse files Browse the repository at this point in the history
…named-for-var

DSP-774-fix-error-using-reserved-name-for-var
  • Loading branch information
Yasmine-97 authored Jan 20, 2025
2 parents 1f7037f + 50520b9 commit 38e2334
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion google/redis/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "google_redis_instance" "main" {
region = var.region
name = var.name

redis_version = var.version
redis_version = var.redis_version

memory_size_gb = var.memory

Expand Down
2 changes: 1 addition & 1 deletion google/redis/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ variable "network" {
type = string
}

variable "version" {
variable "redis_version" {
type = string
default = "REDIS_7_2"
}
Expand Down

0 comments on commit 38e2334

Please sign in to comment.