Skip to content

Commit

Permalink
dev/msp: fix redis configuration drift (sourcegraph#58173)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobheadxi authored Nov 7, 2023
1 parent 64a3365 commit 4e6210a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dev/managedservicesplatform/internal/resource/redis/redis.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ func New(scope constructs.Construct, id resourceid.ID, config Config) (*Output,
AuthEnabled: true,
TransitEncryptionMode: pointers.Ptr("SERVER_AUTHENTICATION"),
PersistenceConfig: &redisinstance.RedisInstancePersistenceConfig{
PersistenceMode: pointers.Ptr("RDB"),
PersistenceMode: pointers.Ptr("RDB"),
RdbSnapshotPeriod: pointers.Ptr("TWENTY_FOUR_HOURS"),
},

AuthorizedNetwork: config.Network.SelfLink(),
Expand Down

0 comments on commit 4e6210a

Please sign in to comment.