From: Clint Byrum Date: Thu, 15 Aug 2013 11:14:26 +0000 (-0700) Subject: Correct os-collect-config.cfn.path to be string. X-Git-Tag: opnfv-6.0.0~2968 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=07ac7428976ea5a91c3371529be734df0ef38562;p=apex-tripleo-heat-templates.git Correct os-collect-config.cfn.path to be string. 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 --- diff --git a/nova-compute-instance.yaml b/nova-compute-instance.yaml index e93c314c..c7753e82 100644 --- a/nova-compute-instance.yaml +++ b/nova-compute-instance.yaml @@ -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}