diff options
author | James Slagle <jslagle@redhat.com> | 2014-07-17 11:13:34 -0400 |
---|---|---|
committer | James Slagle <jslagle@redhat.com> | 2014-07-17 11:13:34 -0400 |
commit | 2a55b0be688db98405de3632ff3d9e8fe3e80034 (patch) | |
tree | c386aae26362430ce83da8899666f6507b2f06c7 /block-storage.yaml | |
parent | 2c982451e6e0ff6a9537cc56324ba6d0d4986712 (diff) |
Remove extra list
We are using "ctlplane" as the first parameter to Fn::Select here, so
the second parameter must be a map, not a list. Fixes the following
error:
ERROR: Property error : BlockStorage0Deployment: input_values Index to
"Fn::Select" must be an integer
Change-Id: I34153543f8c3152df449e1b42e1f76a78a7d6ba3
Diffstat (limited to 'block-storage.yaml')
-rw-r--r-- | block-storage.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block-storage.yaml b/block-storage.yaml index 16363b59..55a629a0 100644 --- a/block-storage.yaml +++ b/block-storage.yaml @@ -30,7 +30,7 @@ Resources: input_values: controller_host: {"Fn::Select": [ 0, {"Fn::Select": [ "ctlplane", {"Fn::GetAtt": [controller0, networks]} ]} ] } cinder_dsn: {"Fn::Join": ['', ['mysql://cinder:unset@', {"Fn::Select": [ 0, {"Fn::Select": [ "ctlplane", {"Fn::GetAtt": [controller0, networks]} ]} ] } , '/cinder']]} - neutron_local_ip: {"Fn::Select": [0, "Fn::Select": [ctlplane, [{"Fn::GetAtt": [BlockStorage0 , networks]}]]]} + neutron_local_ip: {"Fn::Select": [0, "Fn::Select": [ctlplane, {"Fn::GetAtt": [BlockStorage0 , networks]}]]} BlockStorageConfig: Type: OS::Heat::StructuredConfig Properties: |