feat(pp): update to bolt v3
This commit is contained in:
parent
2562204827
commit
d8cf58e529
2 changed files with 34 additions and 0 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
|
@ -8,6 +8,11 @@ modules
|
||||||
info.rb
|
info.rb
|
||||||
.rerun.json
|
.rerun.json
|
||||||
|
|
||||||
|
### Puppet Bolt ###
|
||||||
|
.modules
|
||||||
|
.plan_cache.json
|
||||||
|
bolt-debug.log
|
||||||
|
|
||||||
### Code ###
|
### Code ###
|
||||||
.vscode/*
|
.vscode/*
|
||||||
!.vscode/settings.json
|
!.vscode/settings.json
|
||||||
|
|
|
||||||
29
bolt-project.yaml
Normal file
29
bolt-project.yaml
Normal file
|
|
@ -0,0 +1,29 @@
|
||||||
|
---
|
||||||
|
name: dotfiles
|
||||||
|
modulepath:
|
||||||
|
- site-modules
|
||||||
|
modules:
|
||||||
|
#
|
||||||
|
# Puppet std lib
|
||||||
|
#
|
||||||
|
- puppetlabs/stdlib
|
||||||
|
#
|
||||||
|
# Docker modules
|
||||||
|
#
|
||||||
|
- puppetlabs/apt
|
||||||
|
- puppetlabs/docker
|
||||||
|
#
|
||||||
|
# VSC Repo to install all the git repos
|
||||||
|
#
|
||||||
|
- puppetlabs/vcsrepo
|
||||||
|
#
|
||||||
|
# Archive module for downloading and unpacking archives
|
||||||
|
#
|
||||||
|
- puppet/archive
|
||||||
|
#
|
||||||
|
# Add the private puppet module for the proprietary bits
|
||||||
|
#
|
||||||
|
- name: private
|
||||||
|
git: git@gitlab.com:adeattwood/dotfiles-private.git
|
||||||
|
ref: master
|
||||||
|
resolve: false
|
||||||
Loading…
Reference in a new issue