pulumi/tests/testdata/component_pp/rc/main.pp

15 lines
180 B
Puppet

config "prefix" "string" {
}
resource "pet" "random:index:RandomPet" {
options {
version = "4.13.0"
}
prefix = prefix
}
output "name" {
value = pet.id
}