├── .chef ├── delivery-validator.pem.pub └── keys.MD ├── .gitignore ├── Berksfile ├── Berksfile.lock ├── CHANGELOG.md ├── README.md ├── chef_automate.tpl ├── chef_load.conf.tpl ├── example.tfvars ├── example_secrets.tfvars ├── files ├── chef_load.service └── installer.sh ├── main.tf ├── mount_data_volume ├── security.tf ├── setup.sh ├── testing.tf └── variables.tf /.chef/delivery-validator.pem.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echohack/deltron/HEAD/.chef/delivery-validator.pem.pub -------------------------------------------------------------------------------- /.chef/keys.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echohack/deltron/HEAD/.chef/keys.MD -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echohack/deltron/HEAD/.gitignore -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echohack/deltron/HEAD/Berksfile -------------------------------------------------------------------------------- /Berksfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echohack/deltron/HEAD/Berksfile.lock -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echohack/deltron/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echohack/deltron/HEAD/README.md -------------------------------------------------------------------------------- /chef_automate.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echohack/deltron/HEAD/chef_automate.tpl -------------------------------------------------------------------------------- /chef_load.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echohack/deltron/HEAD/chef_load.conf.tpl -------------------------------------------------------------------------------- /example.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echohack/deltron/HEAD/example.tfvars -------------------------------------------------------------------------------- /example_secrets.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echohack/deltron/HEAD/example_secrets.tfvars -------------------------------------------------------------------------------- /files/chef_load.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echohack/deltron/HEAD/files/chef_load.service -------------------------------------------------------------------------------- /files/installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echohack/deltron/HEAD/files/installer.sh -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echohack/deltron/HEAD/main.tf -------------------------------------------------------------------------------- /mount_data_volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echohack/deltron/HEAD/mount_data_volume -------------------------------------------------------------------------------- /security.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echohack/deltron/HEAD/security.tf -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echohack/deltron/HEAD/setup.sh -------------------------------------------------------------------------------- /testing.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echohack/deltron/HEAD/testing.tf -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echohack/deltron/HEAD/variables.tf --------------------------------------------------------------------------------