HEAT template with OS::Cinder::Quota failing
Hi,
I am using the below HEAT template for Project and Quota creation in 1 template.
And marking the Cinder quota resource dependent on Project resource it still fails with below message:-
"Property error: : resources.Dev_Test_1_Cinder_quota.properties.project: : Error validating value 'Dev_Test_1': The KeystoneProject (Dev_Test_1) could not be found."
Heat Template:-
heat_template_version: newton
description: HEAT template to create different roles in OpenStack
resources:
Dev_Test_1_Cinder_quota:
type: OS::Cinder::Quota
depends_on: Dev
properties:
project: "Dev_Test_1"
volumes: 20
gigabytes: 200
snapshots: 20
Dev:
type: OS::Keystone::Project
properties:
name: Dev_Test_1
description: "Dev 1 tenancy"
domain: default
enabled: True