{"id":20111323,"url":"https://github.com/openstack/puppet-heat","last_synced_at":"2025-04-05T23:12:36.164Z","repository":{"id":45755712,"uuid":"11843027","full_name":"openstack/puppet-heat","owner":"openstack","description":"OpenStack Heat Puppet Module. Mirror of code maintained at opendev.org.","archived":false,"fork":false,"pushed_at":"2025-03-14T15:27:53.000Z","size":1488,"stargazers_count":53,"open_issues_count":0,"forks_count":31,"subscribers_count":14,"default_branch":"master","last_synced_at":"2025-03-29T22:11:16.629Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://opendev.org/openstack/puppet-heat","language":"Puppet","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/openstack.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2013-08-02T12:41:07.000Z","updated_at":"2025-03-14T15:27:56.000Z","dependencies_parsed_at":"2023-02-16T18:01:43.922Z","dependency_job_id":"1f81a8be-ce50-4c0e-96e4-ea835b0634a9","html_url":"https://github.com/openstack/puppet-heat","commit_stats":null,"previous_names":[],"tags_count":127,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-heat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-heat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-heat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpuppet-heat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openstack","download_url":"https://codeload.github.com/openstack/puppet-heat/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247411239,"owners_count":20934653,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-13T18:15:33.866Z","updated_at":"2025-04-05T23:12:36.145Z","avatar_url":"https://github.com/openstack.png","language":"Puppet","funding_links":[],"categories":[],"sub_categories":[],"readme":"Team and repository tags\n========================\n\n[![Team and repository tags](https://governance.openstack.org/tc/badges/puppet-heat.svg)](https://governance.openstack.org/tc/reference/tags/index.html)\n\n\u003c!-- Change things from this point on --\u003e\n\npuppet-heat\n=============\n\n#### Table of Contents\n\n1. [Overview - What is the heat module?](#overview)\n2. [Module Description - What does the module do?](#module-description)\n3. [Setup - The basics of getting started with heat](#setup)\n4. [Implementation - An under-the-hood peek at what the module is doing](#implementation)\n5. [Limitations - OS compatibility, etc.](#limitations)\n6. [Development - Guide for contributing to the module](#development)\n7. [Contributors - Those with commits](#contributors)\n8. [Release Notes - Release notes for the project](#release-notes)\n9. [Repository - The project source code repository](#repository)\n\nOverview\n--------\n\nThe heat module is part of [OpenStack](https://opendev.org/openstack), an effort by the\nOpenStack infrastructure team to provide continuous integration testing and code review for\nOpenStack and OpenStack community projects as part of the core software. The module itself\nis used to flexibly configure and manage the orchestration service for OpenStack.\n\nModule Description\n------------------\n\nThe heat module is an attempt to make Puppet capable of managing the entirety of heat.\n\nSetup\n-----\n\n**What the heat module affects**\n\n* [Heat](https://docs.openstack.org/heat/latest/), the orchestration service for OpenStack\n\n### Installing heat\n\n    puppet module install openstack/heat\n\n### Beginning with heat\n\nTo utilize the heat module's functionality you will need to declare multiple resources.\nThe following is a modified excerpt from the [openstack module](httpd://github.com/stackforge/puppet-openstack).\nThis is not an exhaustive list of all the components needed. We recommend that you consult and understand the\n[openstack module](https://github.com/stackforge/puppet-openstack) and the [core openstack](http://docs.openstack.org)\ndocumentation to assist you in understanding the available deployment options.\n\n```puppet\n# enable heat resources\nclass { 'heat':\n  default_transport_url =\u003e 'rabbit://heat:an_even_bigger_secret@127.0.0.1:5672/heat',\n  database_connection   =\u003e 'mysql+pymysql://heat:a_big_secret@127.0.0.1/heat?charset=utf8',\n  keystone_password     =\u003e 'a_big_secret',\n}\n\nclass { 'heat::api': }\n\nclass { 'heat::engine':\n  auth_encryption_key =\u003e '1234567890AZERTYUIOPMLKJHGFDSQ12',\n}\n\nclass { 'heat::api_cfn': }\n```\n\nImplementation\n--------------\n\n### puppet-heat\n\nheat is a combination of Puppet manifests and Ruby code to deliver configuration and\nextra functionality through types and providers.\n\n### Types\n\n#### heat_config\n\nThe `heat_config` provider is a children of the ini_setting provider. It allows one to write an entry in the `/etc/heat/heat.conf` file.\n\n```puppet\nheat_config { 'DEFAULT/enable_stack_adopt' :\n  value =\u003e True,\n}\n```\n\nThis will write `enable_stack_adopt=True` in the `[DEFAULT]` section.\n\n##### name\n\nSection/setting name to manage from `heat.conf`\n\n##### value\n\nThe value of the setting to be defined.\n\n##### secret\n\nWhether to hide the value from Puppet logs. Defaults to `false`.\n\n##### ensure_absent_val\n\nIf value is equal to ensure_absent_val then the resource will behave as if `ensure =\u003e absent` was specified. Defaults to `\u003cSERVICE DEFAULT\u003e`\n\nLimitations\n-----------\n\nNone\n\nDevelopment\n-----------\n\nDeveloper documentation for the entire puppet-openstack project.\n\n* https://docs.openstack.org/puppet-openstack-guide/latest/\n\nContributors\n------------\n\n* https://github.com/openstack/puppet-heat/graphs/contributors\n\nRelease Notes\n-------------\n\n* https://docs.openstack.org/releasenotes/puppet-heat\n\nRepository\n----------\n\n* https://opendev.org/openstack/puppet-heat\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenstack%2Fpuppet-heat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenstack%2Fpuppet-heat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenstack%2Fpuppet-heat/lists"}