This is required so that the REST API can take over the orchestration service type.
This will break exiting setups until heat-keystone-setup is re-run.
There will be a corresponding update to devstack, which may be out of sync to this one.
# Services
HEAT_SERVICE=$(get_id \
keystone service-create --name=heat \
- --type=orchestration \
+ --type=cloudformation \
--description="Heat Service")
HEAT_USER=$(get_id keystone user-create --name=heat \
--pass="$SERVICE_PASSWORD" \
auth_tok=auth_token,
creds=creds,
insecure=insecure,
- service_type='orchestration')
+ service_type='cloudformation')
return res
-def authenticate(con, service_type='orchestration', service_name='heat'):
+def authenticate(con, service_type='cloudformation', service_name='heat'):
""" Authenticate a user context. This authenticates either an
EC2 style key context or a keystone user/pass context.