├── .fixtures.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── examples ├── compartment_log.pp ├── datetime_format-log.pp ├── iam.json ├── log.pp ├── log_level.pp ├── minimal-log.pp └── streamname-log.pp ├── manifests ├── compartment_log.pp ├── init.pp ├── log.pp └── params.pp ├── metadata.json ├── spec ├── classes │ └── init_spec.rb └── spec_helper.rb ├── templates ├── awslogs_header.erb ├── awslogs_log.erb └── awslogs_logging_config_file.erb └── tests └── init.pp /.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/.fixtures.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/Rakefile -------------------------------------------------------------------------------- /examples/compartment_log.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/examples/compartment_log.pp -------------------------------------------------------------------------------- /examples/datetime_format-log.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/examples/datetime_format-log.pp -------------------------------------------------------------------------------- /examples/iam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/examples/iam.json -------------------------------------------------------------------------------- /examples/log.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/examples/log.pp -------------------------------------------------------------------------------- /examples/log_level.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/examples/log_level.pp -------------------------------------------------------------------------------- /examples/minimal-log.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/examples/minimal-log.pp -------------------------------------------------------------------------------- /examples/streamname-log.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/examples/streamname-log.pp -------------------------------------------------------------------------------- /manifests/compartment_log.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/manifests/compartment_log.pp -------------------------------------------------------------------------------- /manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/manifests/init.pp -------------------------------------------------------------------------------- /manifests/log.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/manifests/log.pp -------------------------------------------------------------------------------- /manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/manifests/params.pp -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/metadata.json -------------------------------------------------------------------------------- /spec/classes/init_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/spec/classes/init_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /templates/awslogs_header.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/templates/awslogs_header.erb -------------------------------------------------------------------------------- /templates/awslogs_log.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/templates/awslogs_log.erb -------------------------------------------------------------------------------- /templates/awslogs_logging_config_file.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/templates/awslogs_logging_config_file.erb -------------------------------------------------------------------------------- /tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kemra102/puppet-cloudwatchlogs/HEAD/tests/init.pp --------------------------------------------------------------------------------