preparing 1.0.0 release

This commit is contained in:
Bram Vogelaar 2021-01-14 16:19:01 +01:00
parent 65e90f4653
commit 5565a1cba9
No known key found for this signature in database
GPG key ID: 02374F82C00E4984
3 changed files with 26 additions and 4 deletions

View file

@ -16,16 +16,20 @@ This class installs the hashicorp repository
#### Examples
#####
##### Inclusion using defaults
```puppet
include hashi_stack::repo
```
#####
##### Include repo and install packer as package
```puppet
class { 'hashi_stack::repo': } -> package { 'packer': ensure => installed }
include hashi_stack::repo
package { 'packer':
ensure => installed,
require => Class['Hashi_stack::Repo'],
}
```
#### Parameters