This file is indexed.

/usr/share/tripleo-heat-templates/examples/launchconfig_result.yaml is in python-tripleo-heat-templates 0.6.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Description: examples/launchconfig1.yaml,examples/launchconfig2.yaml
HeatTemplateFormatVersion: '2012-12-12'
Parameters:
  A:
    Default: test1
    Type: String
  B:
    Default: test2
    Type: String
  C:
    Default: test3
    Type: String
  resource1Image:
    Default: resource1
    Type: String
  resource2Image:
    Default: resource2
    Type: String
Resources:
  notcomputeConfig:
    Metadata:
      OpenStack::Role: notcomputeConfig
      a:
        Ref: A
      b:
        Ref: B
      c:
        Ref: C
    Type: AWS::AutoScaling::LaunchConfiguration
  resource1:
    Properties:
      flavor: test_flavor
      image:
        Ref: resource1Image
      key_name: test_key
    Type: OS::Nova::Server
  resource2:
    Properties:
      flavor: test_flavor
      image:
        Ref: resource2Image
      key_name: test_key
    Type: OS::Nova::Server