Correct os-collect-config.cfn.path to be string.
authorClint Byrum <clint@fewbar.com>
Thu, 15 Aug 2013 11:14:26 +0000 (04:14 -0700)
committerClint Byrum <clint@fewbar.com>
Thu, 15 Aug 2013 11:15:58 +0000 (04:15 -0700)
Specified as a list, it gets translated literally into
["NovaCompute0"] in /etc/os-collect-config.conf. This is not
desirable and results in 500 errors because ["NovaCompute0"] does
not exist.

Change-Id: I7dc01937d73c0c0e5cea70f5a3202d0e43c4caed

nova-compute-instance.yaml

index e93c314..c7753e8 100644 (file)
@@ -78,7 +78,7 @@ Resources:
           secret_access_key:
             Fn::GetAtt: [ ComputeKey, SecretAccessKey ]
           stack_name: {Ref: 'AWS::StackName'}
-          path: [ NovaCompute0.Metadata ]
+          path: NovaCompute0.Metadata
       nova:
         compute_driver: {Ref: NovaComputeDriver}
         compute_libvirt_type: {Ref: NovaComputeLibvirtType}