-
Notifications
You must be signed in to change notification settings - Fork 55
Open
Labels
Description
Terraform v0.9.8
${data.external.foo.result.bla}will not actually work
* data.template_cloudinit_config.border: Resource 'data.external.border-gw-key' does not have attribute 'result.priv' for variable 'data.external.border-gw-key.result.priv'
the correct usage appears to be
${lookup(data.external.foo.result, "bla")}it would be great if the documentation mentioned that. Took me quite some hairpulling to figure that out, as everything i found googling appears to be using result.attr
Reactions are currently unavailable