Replies: 1 comment 3 replies
-
i'm not sure if my preference is to avoid using cf's intrinsic function unless there is no choice, because those fn resolve at runtime, which defeated the purpose of converting to dhall, where can type check config as much as possible I'm not really against extending it just want to see if there is really a valid use case...so is it possible to convert |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
DeletionPolicy
is currently implemented as an enum:In some of our stacks, we find ourselves wanting to set different policies on resources depending on conditional expressions involving
Fn::If
.We currently work around this by declaring the resource and then using
⫽ { UpdateReplacePolicy = whatever }
to override the record field, but a native option might be nicer. I'm thinking we may want to extend this enum to something likeWhat do you think?
Beta Was this translation helpful? Give feedback.
All reactions