├── .gitignore ├── .kitchen.yml ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── defaults └── main.yml ├── handlers └── main.yml ├── meta └── main.yml ├── tasks ├── centos.yml ├── debian.yml └── main.yml ├── test └── integration │ └── droplet │ ├── default.yml │ └── serverspec │ ├── inventory_spec.rb │ ├── pip_spec.rb │ └── spec_helper.rb └── vars ├── main.yml └── private.yml.example /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonheecs/ansible-digitalocean/HEAD/.gitignore -------------------------------------------------------------------------------- /.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonheecs/ansible-digitalocean/HEAD/.kitchen.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonheecs/ansible-digitalocean/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonheecs/ansible-digitalocean/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonheecs/ansible-digitalocean/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonheecs/ansible-digitalocean/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonheecs/ansible-digitalocean/HEAD/README.md -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonheecs/ansible-digitalocean/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonheecs/ansible-digitalocean/HEAD/meta/main.yml -------------------------------------------------------------------------------- /tasks/centos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonheecs/ansible-digitalocean/HEAD/tasks/centos.yml -------------------------------------------------------------------------------- /tasks/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonheecs/ansible-digitalocean/HEAD/tasks/debian.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonheecs/ansible-digitalocean/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /test/integration/droplet/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonheecs/ansible-digitalocean/HEAD/test/integration/droplet/default.yml -------------------------------------------------------------------------------- /test/integration/droplet/serverspec/inventory_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonheecs/ansible-digitalocean/HEAD/test/integration/droplet/serverspec/inventory_spec.rb -------------------------------------------------------------------------------- /test/integration/droplet/serverspec/pip_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonheecs/ansible-digitalocean/HEAD/test/integration/droplet/serverspec/pip_spec.rb -------------------------------------------------------------------------------- /test/integration/droplet/serverspec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | # Encoding: utf-8 2 | require 'serverspec' 3 | 4 | set :backend, :exec -------------------------------------------------------------------------------- /vars/main.yml: -------------------------------------------------------------------------------- 1 | --- -------------------------------------------------------------------------------- /vars/private.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonheecs/ansible-digitalocean/HEAD/vars/private.yml.example --------------------------------------------------------------------------------