From 07ac7428976ea5a91c3371529be734df0ef38562 Mon Sep 17 00:00:00 2001 From: Clint Byrum Date: Thu, 15 Aug 2013 04:14:26 -0700 Subject: 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 --- nova-compute-instance.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nova-compute-instance.yaml') 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} -- cgit 1.2.3-korg