Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignore data_persistence_authentication_method (not used) #1499

Merged
merged 1 commit into from
Nov 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions terraform/subscriptions/modules/redis_cache/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,15 @@ resource "azurerm_redis_cache" "this" {
sku_name = var.sku_name
minimum_tls_version = "1.2"
public_network_access_enabled = false
lifecycle {
ignore_changes = [
redis_configuration[0].data_persistence_authentication_method
]
}
redis_configuration {
maxmemory_reserved = 125
maxmemory_delta = 125
maxfragmentationmemory_reserved = 125
data_persistence_authentication_method = "SAS"

maxmemory_policy = "volatile-lru"
maxmemory_reserved = 125
maxmemory_delta = 125
maxfragmentationmemory_reserved = 125
maxmemory_policy = "volatile-lru"
}
}