↧
Answer by Michael Olafisoye for how to implement "sticky" variables in...
This document says nothing about maintaining state which is what you need but it does have useful info on variables -...
View Articlehow to implement "sticky" variables in terraform?
I'd like to have a Terraform variable with these properties: if it has never been set, use a default value if no value is provided, use the value from the previous run if a value is provided, use that...
View ArticleAnswer by Warwick Mitchell for how to implement "sticky" variables in terraform?
I was trying to do something similar and came across this post. Worked out a solution in the end so thought I should share for anyone else coming across this post.variable "maintenance" { description =...
View Article