diff options
author | Clint Byrum <clint@fewbar.com> | 2013-08-15 04:14:26 -0700 |
---|---|---|
committer | Clint Byrum <clint@fewbar.com> | 2013-08-15 04:15:58 -0700 |
commit | 07ac7428976ea5a91c3371529be734df0ef38562 (patch) | |
tree | d35dcfdedccedc9548461afb94352608e97378b4 | |
parent | 46c4ce37173e23a1a5bc68f9f5b0921e6f83be8b (diff) |
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
-rw-r--r-- | nova-compute-instance.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
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} |