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
{{ message }}
This repository has been archived by the owner on Jul 14, 2019. It is now read-only.
These can either be a boolean (true/false) or array of string. Unfortunately terraform doesn't provide a direct way to support multiple-typed values.
A couple options I'm thinking of:
Created two separate fields (ignore_plurals, ignore_plurals_words) that enable/disable the functionality vs change the words inside.
Create some nested type that supports either/or
Map the concept of empty array to false and nil to true? (Not entirely sure if terraform will provide nil vs the empty array for the value if not specified. If it provides the empty array this is a no-go)
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
These can either be a boolean (true/false) or array of string. Unfortunately terraform doesn't provide a direct way to support multiple-typed values.
A couple options I'm thinking of:
false
and nil totrue
? (Not entirely sure if terraform will provide nil vs the empty array for the value if not specified. If it provides the empty array this is a no-go)The text was updated successfully, but these errors were encountered: