As first proposed in #1377 I think it would be very useful to have a way to set a variable as required, and also set some default value. ``` yaml web: image: org/app:${VERSION?} # Required ``` Or ``` yaml web: image: org/app:${VERSION:latest} # Default Value ```