Hello all, I do not manage to overwrite properties...
# getting-started
r
Hello all, I do not manage to overwrite properties defined in Pulumi.yaml with other ones defined in my Pulumi.dev.yaml stack file. The following does not work, any idea ? My project file, Pulumi.yaml
Copy code
...
resources:
  cluster:
    properties:
      name: test
      ...
My stack file, Pulumi.dev.yaml
Copy code
resources:
  cluster:
    properties:
      name: dev-cluster
When I deploy the stack the cluster is not named with the “dev-cluster” value
m
Are you following a particular tutorial? I'm not familiar with the YAML flavor of Pulumi but I'd be surprised if it works this way. If you want to have stack-specific values, you'll have to use configuration values: https://www.pulumi.com/docs/concepts/config/
r
thanks a lot @modern-zebra-45309 👍
m
r
thanks for you help, exactly what I needed