External
value type.TF_VAR_availability_zone_names
which sets the CloudTruth value to ["us-west-2a", "us-west-2b"]
.timeout
to set the externally referenced value of 500
from the JSON content in the integration into to our CloudTruth parameter. You can test your reference by clicking "See Value" in order to display the contents of the Referenced Value. If the JMESPath selector does not return a valid result, error details will be displayed.Data.Super
would give you the value Natural
.Data.Project.Parameter[?"@name"==`rowena`]."#text" | [0]
would give you the value castiel
. Let's break that down:Data.Project
inspects each "Project", creating an array.Parameter[?"@name"==`rowena`]
searches the array for a Parameter entry with a name
attribute set to rowena
."#text"
extracts the textual content of that node.| [0]
takes the resulting array matches (from step 1), filtered by step 2 and returns the first one. Without this, the result is ['castiel']
.