├── .fixtures.yml ├── .github └── workflows │ └── testing.yaml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── TEST_COVERAGE.md ├── adfs_claim_rules_get_attrs.png ├── data └── common.yaml ├── example1.png ├── example2.png ├── example3.png ├── example4.png ├── hiera.yaml ├── manifests ├── addsearchpeers.pp ├── authentication.pp ├── certs │ ├── s2s.pp │ └── web.pp ├── deploymentclient.pp ├── distsearch.pp ├── first_time_run.pp ├── init.pp ├── inputs.pp ├── installed.pp ├── limits.pp ├── loglocal.pp ├── mgmtport.pp ├── outputs.pp ├── params.pp ├── passwd.pp ├── secret.pp ├── server │ ├── clustering.pp │ ├── diskusage.pp │ ├── forwarder.pp │ ├── general.pp │ ├── kvstore.pp │ ├── license.pp │ ├── shclustering.pp │ └── ssl.pp ├── service.pp ├── splunk_launch.pp └── web.pp ├── metadata.json ├── puppet_enterprise_add_splunk_class.png ├── spec ├── classes │ └── init_spec.rb ├── fixtures │ └── modules │ │ └── splunk │ │ ├── manifests │ │ └── templates └── spec_helper.rb ├── templates ├── log │ └── log-local.cfg ├── puppet_common_auth_ldap_base │ ├── local │ │ ├── app.conf │ │ └── authentication.conf │ └── metadata │ │ └── local.meta ├── puppet_common_auth_saml_base │ ├── local │ │ ├── app.conf │ │ └── authentication.conf │ └── metadata │ │ └── local.meta ├── puppet_common_deploymentclient_base │ ├── local │ │ ├── app.conf │ │ └── deploymentclient.conf │ └── metadata │ │ └── local.meta ├── puppet_common_diskusage_base │ ├── local │ │ └── server.conf │ └── metadata │ │ └── local.meta ├── puppet_common_kvstore_base │ ├── local │ │ ├── app.conf │ │ └── server.conf │ └── metadata │ │ └── local.meta ├── puppet_common_license_client_base │ ├── local │ │ ├── app.conf │ │ └── server.conf │ └── metadata │ │ └── local.meta ├── puppet_common_mgmtport_base │ └── local │ │ └── web.conf ├── puppet_common_mgmtport_disabled │ └── local │ │ └── server.conf ├── puppet_common_pass4symmkey_base │ ├── local │ │ ├── app.conf │ │ └── server.conf │ └── metadata │ │ └── local.meta ├── puppet_common_ssl_base │ ├── local │ │ ├── app.conf │ │ └── server.conf │ └── metadata │ │ └── local.meta ├── puppet_common_ssl_inputs │ ├── local │ │ ├── app.conf │ │ └── inputs.conf │ └── metadata │ │ └── local.meta ├── puppet_common_ssl_outputs │ ├── local │ │ ├── app.conf │ │ └── outputs.conf │ └── metadata │ │ └── local.meta ├── puppet_common_ssl_web_base │ ├── local │ │ ├── app.conf │ │ └── web.conf │ └── metadata │ │ └── local.meta ├── puppet_common_thruput_base │ ├── local │ │ ├── app.conf │ │ └── limits.conf │ └── metadata │ │ └── local.meta ├── puppet_forwarder_base │ ├── local │ │ └── server.conf │ └── metadata │ │ └── local.meta ├── puppet_indexer_cluster_forwarder_base │ └── local │ │ └── server.conf ├── puppet_indexer_cluster_master_base │ ├── local │ │ ├── app.conf │ │ └── server.conf │ └── metadata │ │ └── local.meta ├── puppet_indexer_cluster_pass4symmkey_base │ ├── local │ │ ├── app.conf │ │ └── server.conf │ └── metadata │ │ └── meta.local ├── puppet_indexer_cluster_searchhead_base │ ├── local │ │ ├── app.conf │ │ └── server.conf │ └── metadata │ │ └── local.meta ├── puppet_indexer_cluster_slave_base │ ├── local │ │ ├── app.conf │ │ └── server.conf │ └── metadata │ │ └── local.meta ├── puppet_indexer_indexes_base │ ├── local │ │ └── app.conf │ └── metadata │ │ └── local.meta ├── puppet_indexer_inputs │ ├── local │ │ └── app.conf │ └── metadata │ │ └── local.meta ├── puppet_indexer_volumes_base │ ├── local │ │ └── app.conf │ └── metadata │ │ └── local.meta ├── puppet_search_shcluster_base │ ├── local │ │ ├── app.conf │ │ └── server.conf │ └── metadata │ │ └── local.meta └── puppet_search_shcluster_pass4symmkey_base │ ├── local │ ├── app.conf │ └── server.conf │ └── metadata │ └── meta.local └── tests └── init.pp /.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/.fixtures.yml -------------------------------------------------------------------------------- /.github/workflows/testing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/.github/workflows/testing.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/Rakefile -------------------------------------------------------------------------------- /TEST_COVERAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/TEST_COVERAGE.md -------------------------------------------------------------------------------- /adfs_claim_rules_get_attrs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/adfs_claim_rules_get_attrs.png -------------------------------------------------------------------------------- /data/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/data/common.yaml -------------------------------------------------------------------------------- /example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/example1.png -------------------------------------------------------------------------------- /example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/example2.png -------------------------------------------------------------------------------- /example3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/example3.png -------------------------------------------------------------------------------- /example4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/example4.png -------------------------------------------------------------------------------- /hiera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/hiera.yaml -------------------------------------------------------------------------------- /manifests/addsearchpeers.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/addsearchpeers.pp -------------------------------------------------------------------------------- /manifests/authentication.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/authentication.pp -------------------------------------------------------------------------------- /manifests/certs/s2s.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/certs/s2s.pp -------------------------------------------------------------------------------- /manifests/certs/web.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/certs/web.pp -------------------------------------------------------------------------------- /manifests/deploymentclient.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/deploymentclient.pp -------------------------------------------------------------------------------- /manifests/distsearch.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/distsearch.pp -------------------------------------------------------------------------------- /manifests/first_time_run.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/first_time_run.pp -------------------------------------------------------------------------------- /manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/init.pp -------------------------------------------------------------------------------- /manifests/inputs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/inputs.pp -------------------------------------------------------------------------------- /manifests/installed.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/installed.pp -------------------------------------------------------------------------------- /manifests/limits.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/limits.pp -------------------------------------------------------------------------------- /manifests/loglocal.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/loglocal.pp -------------------------------------------------------------------------------- /manifests/mgmtport.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/mgmtport.pp -------------------------------------------------------------------------------- /manifests/outputs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/outputs.pp -------------------------------------------------------------------------------- /manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/params.pp -------------------------------------------------------------------------------- /manifests/passwd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/passwd.pp -------------------------------------------------------------------------------- /manifests/secret.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/secret.pp -------------------------------------------------------------------------------- /manifests/server/clustering.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/server/clustering.pp -------------------------------------------------------------------------------- /manifests/server/diskusage.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/server/diskusage.pp -------------------------------------------------------------------------------- /manifests/server/forwarder.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/server/forwarder.pp -------------------------------------------------------------------------------- /manifests/server/general.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/server/general.pp -------------------------------------------------------------------------------- /manifests/server/kvstore.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/server/kvstore.pp -------------------------------------------------------------------------------- /manifests/server/license.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/server/license.pp -------------------------------------------------------------------------------- /manifests/server/shclustering.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/server/shclustering.pp -------------------------------------------------------------------------------- /manifests/server/ssl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/server/ssl.pp -------------------------------------------------------------------------------- /manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/service.pp -------------------------------------------------------------------------------- /manifests/splunk_launch.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/splunk_launch.pp -------------------------------------------------------------------------------- /manifests/web.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/manifests/web.pp -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/metadata.json -------------------------------------------------------------------------------- /puppet_enterprise_add_splunk_class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/puppet_enterprise_add_splunk_class.png -------------------------------------------------------------------------------- /spec/classes/init_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/spec/classes/init_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/modules/splunk/manifests: -------------------------------------------------------------------------------- 1 | ../../../../manifests -------------------------------------------------------------------------------- /spec/fixtures/modules/splunk/templates: -------------------------------------------------------------------------------- 1 | ../../../../templates -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /templates/log/log-local.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/log/log-local.cfg -------------------------------------------------------------------------------- /templates/puppet_common_auth_ldap_base/local/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_auth_ldap_base/local/app.conf -------------------------------------------------------------------------------- /templates/puppet_common_auth_ldap_base/local/authentication.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_auth_ldap_base/local/authentication.conf -------------------------------------------------------------------------------- /templates/puppet_common_auth_ldap_base/metadata/local.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_auth_ldap_base/metadata/local.meta -------------------------------------------------------------------------------- /templates/puppet_common_auth_saml_base/local/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_auth_saml_base/local/app.conf -------------------------------------------------------------------------------- /templates/puppet_common_auth_saml_base/local/authentication.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_auth_saml_base/local/authentication.conf -------------------------------------------------------------------------------- /templates/puppet_common_auth_saml_base/metadata/local.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_auth_saml_base/metadata/local.meta -------------------------------------------------------------------------------- /templates/puppet_common_deploymentclient_base/local/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_deploymentclient_base/local/app.conf -------------------------------------------------------------------------------- /templates/puppet_common_deploymentclient_base/local/deploymentclient.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_deploymentclient_base/local/deploymentclient.conf -------------------------------------------------------------------------------- /templates/puppet_common_deploymentclient_base/metadata/local.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_deploymentclient_base/metadata/local.meta -------------------------------------------------------------------------------- /templates/puppet_common_diskusage_base/local/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_diskusage_base/local/server.conf -------------------------------------------------------------------------------- /templates/puppet_common_diskusage_base/metadata/local.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_diskusage_base/metadata/local.meta -------------------------------------------------------------------------------- /templates/puppet_common_kvstore_base/local/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_kvstore_base/local/app.conf -------------------------------------------------------------------------------- /templates/puppet_common_kvstore_base/local/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_kvstore_base/local/server.conf -------------------------------------------------------------------------------- /templates/puppet_common_kvstore_base/metadata/local.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_kvstore_base/metadata/local.meta -------------------------------------------------------------------------------- /templates/puppet_common_license_client_base/local/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_license_client_base/local/app.conf -------------------------------------------------------------------------------- /templates/puppet_common_license_client_base/local/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_license_client_base/local/server.conf -------------------------------------------------------------------------------- /templates/puppet_common_license_client_base/metadata/local.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_license_client_base/metadata/local.meta -------------------------------------------------------------------------------- /templates/puppet_common_mgmtport_base/local/web.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_mgmtport_base/local/web.conf -------------------------------------------------------------------------------- /templates/puppet_common_mgmtport_disabled/local/server.conf: -------------------------------------------------------------------------------- 1 | [httpServer] 2 | disableDefaultPort = true 3 | -------------------------------------------------------------------------------- /templates/puppet_common_pass4symmkey_base/local/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_pass4symmkey_base/local/app.conf -------------------------------------------------------------------------------- /templates/puppet_common_pass4symmkey_base/local/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_pass4symmkey_base/local/server.conf -------------------------------------------------------------------------------- /templates/puppet_common_pass4symmkey_base/metadata/local.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_pass4symmkey_base/metadata/local.meta -------------------------------------------------------------------------------- /templates/puppet_common_ssl_base/local/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_ssl_base/local/app.conf -------------------------------------------------------------------------------- /templates/puppet_common_ssl_base/local/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_ssl_base/local/server.conf -------------------------------------------------------------------------------- /templates/puppet_common_ssl_base/metadata/local.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_ssl_base/metadata/local.meta -------------------------------------------------------------------------------- /templates/puppet_common_ssl_inputs/local/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_ssl_inputs/local/app.conf -------------------------------------------------------------------------------- /templates/puppet_common_ssl_inputs/local/inputs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_ssl_inputs/local/inputs.conf -------------------------------------------------------------------------------- /templates/puppet_common_ssl_inputs/metadata/local.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_ssl_inputs/metadata/local.meta -------------------------------------------------------------------------------- /templates/puppet_common_ssl_outputs/local/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_ssl_outputs/local/app.conf -------------------------------------------------------------------------------- /templates/puppet_common_ssl_outputs/local/outputs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_ssl_outputs/local/outputs.conf -------------------------------------------------------------------------------- /templates/puppet_common_ssl_outputs/metadata/local.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_ssl_outputs/metadata/local.meta -------------------------------------------------------------------------------- /templates/puppet_common_ssl_web_base/local/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_ssl_web_base/local/app.conf -------------------------------------------------------------------------------- /templates/puppet_common_ssl_web_base/local/web.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_ssl_web_base/local/web.conf -------------------------------------------------------------------------------- /templates/puppet_common_ssl_web_base/metadata/local.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_ssl_web_base/metadata/local.meta -------------------------------------------------------------------------------- /templates/puppet_common_thruput_base/local/app.conf: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /templates/puppet_common_thruput_base/local/limits.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_thruput_base/local/limits.conf -------------------------------------------------------------------------------- /templates/puppet_common_thruput_base/metadata/local.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_common_thruput_base/metadata/local.meta -------------------------------------------------------------------------------- /templates/puppet_forwarder_base/local/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_forwarder_base/local/server.conf -------------------------------------------------------------------------------- /templates/puppet_forwarder_base/metadata/local.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_forwarder_base/metadata/local.meta -------------------------------------------------------------------------------- /templates/puppet_indexer_cluster_forwarder_base/local/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_indexer_cluster_forwarder_base/local/server.conf -------------------------------------------------------------------------------- /templates/puppet_indexer_cluster_master_base/local/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_indexer_cluster_master_base/local/app.conf -------------------------------------------------------------------------------- /templates/puppet_indexer_cluster_master_base/local/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_indexer_cluster_master_base/local/server.conf -------------------------------------------------------------------------------- /templates/puppet_indexer_cluster_master_base/metadata/local.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_indexer_cluster_master_base/metadata/local.meta -------------------------------------------------------------------------------- /templates/puppet_indexer_cluster_pass4symmkey_base/local/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_indexer_cluster_pass4symmkey_base/local/app.conf -------------------------------------------------------------------------------- /templates/puppet_indexer_cluster_pass4symmkey_base/local/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_indexer_cluster_pass4symmkey_base/local/server.conf -------------------------------------------------------------------------------- /templates/puppet_indexer_cluster_pass4symmkey_base/metadata/meta.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_indexer_cluster_pass4symmkey_base/metadata/meta.local -------------------------------------------------------------------------------- /templates/puppet_indexer_cluster_searchhead_base/local/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_indexer_cluster_searchhead_base/local/app.conf -------------------------------------------------------------------------------- /templates/puppet_indexer_cluster_searchhead_base/local/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_indexer_cluster_searchhead_base/local/server.conf -------------------------------------------------------------------------------- /templates/puppet_indexer_cluster_searchhead_base/metadata/local.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_indexer_cluster_searchhead_base/metadata/local.meta -------------------------------------------------------------------------------- /templates/puppet_indexer_cluster_slave_base/local/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_indexer_cluster_slave_base/local/app.conf -------------------------------------------------------------------------------- /templates/puppet_indexer_cluster_slave_base/local/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_indexer_cluster_slave_base/local/server.conf -------------------------------------------------------------------------------- /templates/puppet_indexer_cluster_slave_base/metadata/local.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_indexer_cluster_slave_base/metadata/local.meta -------------------------------------------------------------------------------- /templates/puppet_indexer_indexes_base/local/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_indexer_indexes_base/local/app.conf -------------------------------------------------------------------------------- /templates/puppet_indexer_indexes_base/metadata/local.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_indexer_indexes_base/metadata/local.meta -------------------------------------------------------------------------------- /templates/puppet_indexer_inputs/local/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_indexer_inputs/local/app.conf -------------------------------------------------------------------------------- /templates/puppet_indexer_inputs/metadata/local.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_indexer_inputs/metadata/local.meta -------------------------------------------------------------------------------- /templates/puppet_indexer_volumes_base/local/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_indexer_volumes_base/local/app.conf -------------------------------------------------------------------------------- /templates/puppet_indexer_volumes_base/metadata/local.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_indexer_volumes_base/metadata/local.meta -------------------------------------------------------------------------------- /templates/puppet_search_shcluster_base/local/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_search_shcluster_base/local/app.conf -------------------------------------------------------------------------------- /templates/puppet_search_shcluster_base/local/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_search_shcluster_base/local/server.conf -------------------------------------------------------------------------------- /templates/puppet_search_shcluster_base/metadata/local.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_search_shcluster_base/metadata/local.meta -------------------------------------------------------------------------------- /templates/puppet_search_shcluster_pass4symmkey_base/local/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_search_shcluster_pass4symmkey_base/local/app.conf -------------------------------------------------------------------------------- /templates/puppet_search_shcluster_pass4symmkey_base/local/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_search_shcluster_pass4symmkey_base/local/server.conf -------------------------------------------------------------------------------- /templates/puppet_search_shcluster_pass4symmkey_base/metadata/meta.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/templates/puppet_search_shcluster_pass4symmkey_base/metadata/meta.local -------------------------------------------------------------------------------- /tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorritfolmer/puppet-splunk/HEAD/tests/init.pp --------------------------------------------------------------------------------