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
I set up a Variables interface to pass in the values (setting up the values of the variables by passing them in at runtime. Already have that covered).
There is a couple of ways you can pass variables in. Assuming you wish to keep the map and the map is in practice map[string]string (i.e. values are convertible to string).
In either case keep in mind that this is passed in as CLI flag with all the same restrictions that shell may come with. i.e. This should work fine for variables of primitive types (number, string, bool) as long as you format it or cast it correctly to string. Complex types will be better handled through tfvars files, as mentioned by @doyleish.
Hey All,
Trying to figure out how to pass in variables at runtime. For example:
I set up a Variables interface to pass in the values (setting up the values of the variables by passing them in at runtime. Already have that covered).
The text was updated successfully, but these errors were encountered: