mirror of https://github.com/pulumi/pulumi.git
13 lines
359 B
Puppet
13 lines
359 B
Puppet
resource "prov" "pulumi:providers:config" {
|
|
name = "my config"
|
|
pluginDownloadURL = "not the same as the pulumi resource option"
|
|
}
|
|
|
|
// Note this isn't _using_ the explicit provider, it's just grabbing a value from it.
|
|
resource "res" "config:index:Resource" {
|
|
text = prov.version
|
|
}
|
|
|
|
output "pluginDownloadURL" {
|
|
value = prov.pluginDownloadURL
|
|
} |