Commit 677616aa authored by Scotty Logan's avatar Scotty Logan
Browse files

adding puppet

parent 8f7a0521
Loading
Loading
Loading
Loading

.puppet-lint.rc

0 → 100644
+1 −0
Original line number Diff line number Diff line
--no-140chars-check

Puppetfile

0 → 100644
+6 −0
Original line number Diff line number Diff line
forge "https://forgeapi.puppet.com"

metadata

mod 'puppetlabs-apache', :latest

README.md

0 → 100644
+0 −0

Empty file added.

data/common.yaml

0 → 100644
+51 −0
Original line number Diff line number Diff line
webapp::vhosts:
  webapp:
    priority: 1
  webapp2:
    priority: 2
  webapp3:
    priority: 3
  proxy-shib: {}
  axess: {}
  bar: {}
  baz: {}
  cert-test: {}
  foo: {}
  forced: {}
  imaging: {}
  proxy-repo: {}
  regular: {}
  sunac: {}
  sunac1: {}
  sunac2: {}
  web: {}
  webdata: {}
  webproxy: {}
  localhost: {}
webapp::mods:
  - alias
  - auth_basic
  - authn_core
  - authz_core
  - authz_host
  - authz_user
  - cgid
  - deflate
  - dir
  - env
  - fastcgi
  - filter
  - headers
  - mime
  - negotiation
  - proxy
  - proxy_fcgi
  - proxy_http
  - rewrite
  - setenvif
  - shib2
  - socache_shmcb
  - ssl
  - status
  - userdir
  - webauthldap
 No newline at end of file

hiera.yaml

0 → 100644
+10 −0
Original line number Diff line number Diff line
---
version: 5

defaults:  # Used for any hierarchy level that omits these keys.
  datadir: data         # This path is relative to hiera.yaml's directory.
  data_hash: yaml_data  # Use the built-in YAML backend.

hierarchy:
  - name: 'common'
    path: 'common.yaml'
Loading