You should use outputs to fetch values from layer instances. For example, if your layer spins up an Elasticsearch and Kibana instance, your layer’s Terraform files will usually include outputs the URLs for both of them, as shown below.Documentation Index
Fetch the complete documentation index at: https://docs.layerform.dev/llms.txt
Use this file to discover all available pages before exploring further.
layerform output <layer_definition> <intance_name>.
elasticsearch_url in your local Kibana’s configuration to point to the remote Elasticsearch. You could also have outputs for Elasticsearch’s username and password.
Using templates
Instead of manually filling your application’s configuration files with these values, you could render outputs to templates using the--template flag.
Assume you have the following kibana-template.yml file, for example.
elasticsearch.hosts value.
You can fill this value by using layerform output <layer_name> <instance_name> --template kibana-template.yml. That way, you can get a rendered file with all outputs filled in.
Next on the roadmap are features to make it easier for you to impersonate
pods within your Kubernetes cluster, so you can more easily simulate your
local code running within a pod.

