File: random_string_template.yaml

package info (click to toggle)
senlin 14.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 7,448 kB
  • sloc: python: 72,605; sh: 586; makefile: 199
file content (13 lines) | stat: -rw-r--r-- 259 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
heat_template_version: 2014-10-16
parameters:
  str_length:
    type: number
    default: 64
resources:
  random:
    type: OS::Heat::RandomString
    properties:
      length: {get_param: str_length}
outputs:
  result:
    value: {get_attr: [random, value]}