mirror of
https://github.com/voxpupuli/puppet-hashi_stack.git
synced 2025-05-24 19:05:01 +01:00
Merge pull request #3 from voxpupuli/update-changelog
preparing 1.0.0 release
This commit is contained in:
commit
a9b8cc64a7
3 changed files with 26 additions and 4 deletions
18
CHANGELOG.md
Normal file
18
CHANGELOG.md
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
# Changelog
|
||||||
|
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
Each new release typically also includes the latest modulesync defaults.
|
||||||
|
These should not affect the functionality of the module.
|
||||||
|
|
||||||
|
## [v1.0.0](https://github.com/voxpupuli/puppet-hashi_stack/tree/v1.0.0) (2021-01-16)
|
||||||
|
|
||||||
|
[Full Changelog](https://github.com/voxpupuli/puppet-hashi_stack/compare/d9ceffd75b1f222e1145d58cceaf3a9bcb41b360...v1.0.0)
|
||||||
|
|
||||||
|
**Merged pull requests:**
|
||||||
|
|
||||||
|
- moving parameters into appropriate place, adding meaning unit test, f… [\#2](https://github.com/voxpupuli/puppet-hashi_stack/pull/2) ([attachmentgenie](https://github.com/attachmentgenie))
|
||||||
|
- modulesync 4.0.0-10-g1c946c3 [\#1](https://github.com/voxpupuli/puppet-hashi_stack/pull/1) ([attachmentgenie](https://github.com/attachmentgenie))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|
10
REFERENCE.md
10
REFERENCE.md
|
@ -16,16 +16,20 @@ This class installs the hashicorp repository
|
||||||
|
|
||||||
#### Examples
|
#### Examples
|
||||||
|
|
||||||
#####
|
##### Inclusion using defaults
|
||||||
|
|
||||||
```puppet
|
```puppet
|
||||||
include hashi_stack::repo
|
include hashi_stack::repo
|
||||||
```
|
```
|
||||||
|
|
||||||
#####
|
##### Include repo and install packer as package
|
||||||
|
|
||||||
```puppet
|
```puppet
|
||||||
class { 'hashi_stack::repo': } -> package { 'packer': ensure => installed }
|
include hashi_stack::repo
|
||||||
|
package { 'packer':
|
||||||
|
ensure => installed,
|
||||||
|
require => Class['Hashi_stack::Repo'],
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Parameters
|
#### Parameters
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "puppet-hashi_stack",
|
"name": "puppet-hashi_stack",
|
||||||
"version": "1.0.0-rc0",
|
"version": "1.0.0",
|
||||||
"author": "Vox Pupuli",
|
"author": "Vox Pupuli",
|
||||||
"summary": "This module contains shared code for various HashiCorp modules",
|
"summary": "This module contains shared code for various HashiCorp modules",
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue