- Terraform
- Helm
Update your
main.tf with a list of objects containing the environment variable names and values.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Configure additional environment variables in the Superblocks data plane
main.tf with a list of objects containing the environment variable names and values.superblocks_agent_environment_variables = [{name = "ENV_VAR_NAME", value = "value"}]
extraEnv or envFrom in the Helm chart values.yaml.# Specify extra environment variables that will be applied
extraEnv:
ENV_VAR_NAME: value
# Specify environment variables that will be applied from secrets or configmaps.
envFrom:
- secretRef:
name: my-agent-env-secret
- configMapRef:
name: my-agent-env-configmap
