-
Notifications
You must be signed in to change notification settings - Fork 387
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sample template for Keystone Service and Endpoint
Adds sample hot templates for keystone service and endpoint resources. implements blueprint keystone-resource-service-endpoint Change-Id: I9ac83bdfaaac4003fcd52f2078ebf22af49a2b51
- Loading branch information
Showing
8 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
heat_template_version: 2013-05-23 | ||
|
||
description: Sample Keystone Service template | ||
|
||
parameters: | ||
name: | ||
type: string | ||
description: Keystone service name | ||
description: | ||
type: string | ||
description: Keystone service description | ||
type: | ||
type: string | ||
description: Keystone service type | ||
|
||
resources: | ||
sample_service: | ||
type: OS::Keystone::Service | ||
properties: | ||
name: {get_param: name} | ||
type: {get_param: type} | ||
description: {get_param: description} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
heat_template_version: 2013-05-23 | ||
|
||
description: Sample Keystone Service Endpoint template | ||
|
||
parameters: | ||
name: | ||
type: string | ||
description: Keystone service name | ||
description: | ||
type: string | ||
description: Keystone service description | ||
type: | ||
type: string | ||
description: Keystone service type | ||
region: | ||
type: string | ||
description: Keystone region name | ||
public_url: | ||
type: string | ||
description: Public endpoint url | ||
internal_url: | ||
type: string | ||
description: Internal endpoint url | ||
admin_url: | ||
type: string | ||
description: Admin endpoint url | ||
|
||
resources: | ||
sample_service: | ||
type: OS::Keystone::Service | ||
properties: | ||
name: {get_param: name} | ||
type: {get_param: type} | ||
description: {get_param: description} | ||
|
||
public_endpoint: | ||
type: OS::Keystone::Endpoint | ||
properties: | ||
service: {get_resource: sample_service} | ||
url: {get_param: public_url} | ||
region: {get_param: region} | ||
interface: public | ||
|
||
internal_endpoint: | ||
type: OS::Keystone::Endpoint | ||
properties: | ||
service: {get_resource: sample_service} | ||
url: {get_param: internal_url} | ||
region: {get_param: region} | ||
interface: internal | ||
|
||
admin_endpoint: | ||
type: OS::Keystone::Endpoint | ||
properties: | ||
service: {get_resource: sample_service} | ||
url: {get_param: admin_url} | ||
region: {get_param: region} | ||
interface: admin | ||
|
File renamed without changes.
File renamed without changes.