Skip to content

Commit

Permalink
SELC-385 redis update scheduling (#122)
Browse files Browse the repository at this point in the history
Co-authored-by: anttorre <[email protected]>
Co-authored-by: Pasquale De Vita <[email protected]>
  • Loading branch information
3 people authored Feb 4, 2022
1 parent 608df5b commit 5559fa4
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/core/redis_cache.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,30 @@ module "redis" {
private_dns_zone_ids = var.redis_private_endpoint_enabled ? [azurerm_private_dns_zone.privatelink_redis_cache_windows_net[0].id] : []
}

// when azure can apply patch?
patch_schedules = [
{
day_of_week = "Sunday"
start_hour_utc = 23
},
{
day_of_week = "Monday"
start_hour_utc = 23
},
{
day_of_week = "Tuesday"
start_hour_utc = 23
},
{
day_of_week = "Wednesday"
start_hour_utc = 23
},
{
day_of_week = "Thursday"
start_hour_utc = 23
},
]

tags = var.tags
}

Expand Down

0 comments on commit 5559fa4

Please sign in to comment.