The `pulumi.Config` object constructor states that...
# general
f
The
pulumi.Config
object constructor states that :
[…] For example, a bag whose name is pulumi:foo, with keys a, b, and c, is entirely separate from a bag whose name is pulumi:bar with the same simple key names.
Each key has a fully qualified names, such as pulumifooa, ..., and pulumibara, respectively.
It gives as an example that a config could be named
pulumi:foo
which gives a possible fully qualified key
pulumi:foo:a
. Or if I try to define a config bag as such, I get an error :
Copy code
error: invalid configuration key: could not parse foo:bar:ber as a configuration key (configuration keys should be of the form `<namespace>:<name>`)
It seems to refuse a
:
in the
Config
name
👍 1