can you do templated values in the project-level c...
# general
i
can you do templated values in the project-level config, eg. in Pulumi.yaml
Copy code
config:
  kubernetes:namespace: my_project-{stack}
a
I don’t think so.
c
No but you can use standard YAML placeholders, like
Copy code
name: &stack project-name
config:
  kubernetes:namespace: *stack
if that's in any way helpful
👍 1