mirror of https://github.com/pulumi/pulumi.git
12 lines
241 B
Puppet
12 lines
241 B
Puppet
![]() |
resource randomPassword "random:index/randomPassword:RandomPassword" {
|
||
|
__logicalName = "randomPassword"
|
||
|
length = 16
|
||
|
special = true
|
||
|
overrideSpecial = "_%@"
|
||
|
}
|
||
|
|
||
|
output password {
|
||
|
__logicalName = "password"
|
||
|
value = randomPassword.result
|
||
|
}
|