hi, in the documentation, it's referencing to Conf...
# general
t
hi, in the documentation, it's referencing to Config setter "The programming model offers a
Config
object with various getters and setters for retrieving values." https://www.pulumi.com/docs/intro/concepts/config/ But I can't find any setter in the API documentation
r
my guess is that "setters" was added to that sentence by mistake, since it explicitly says "for retrieving values", which differs from the CLI
config
("for managing key-value pairs")
Config
is implemented in each language, eg: https://github.com/pulumi/pulumi/tree/master/sdk/go/pulumi/config https://github.com/pulumi/pulumi/blob/master/sdk/python/lib/pulumi/config.py https://github.com/pulumi/pulumi/blob/master/sdk/dotnet/Pulumi/Config.cs etc from a quick search/glance, none of those have "set" functions
t
Okay thanks. Too bad :(
r