You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since last week our template failed to deploy. After talking to AWS customer services seems that last week a strict validation was forced now on this field. which leads the CDK output template to fail.
today the output results this text
"ExpirationDate": "2024-11-19T00:00:00"
as understood from the customer services - Z must be added in the end.
our code is doing so: lifecycleMaxSizeRuleBuilder.expirationDate(LocalDate.now().plus(1, ChronoUnit.YEARS).atStartOfDay().toInstant(ZoneOffset.UTC));
Expected Behavior
With Z in the end "ExpirationDate": "2024-11-19T00:00:00Z"