├── .gitignore ├── .kitchen.docker.yml ├── .kitchen.ec2.yml ├── .kitchen.yml ├── .rubocop.yml ├── Berksfile ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── attributes └── default.rb ├── chefignore ├── libraries └── matchers.rb ├── metadata.rb ├── providers ├── aws_credentials.rb └── aws_s3_file.rb ├── recipes ├── _aws_linux.rb ├── _aws_windows.rb ├── awscli.rb └── default.rb ├── resources ├── aws_credentials.rb └── aws_s3_file.rb ├── spec └── unit │ ├── recipes │ ├── _aws_linux_spec.rb │ ├── _aws_windows_spec.rb │ └── awscli_spec.rb │ └── spec_helper.rb ├── templates └── default │ └── credentials.erb └── test ├── fixtures └── cookbooks │ ├── node_dump │ ├── metadata.rb │ └── recipes │ │ └── default.rb │ ├── test_credentials │ ├── metadata.rb │ └── recipes │ │ └── default.rb │ ├── test_get │ ├── metadata.rb │ └── recipes │ │ ├── default.rb │ │ └── profile.rb │ └── test_virtualenv │ ├── metadata.rb │ └── recipes │ └── default.rb ├── integration ├── default │ └── serverspec │ │ └── default_spec.rb ├── profile_test_get │ └── serverspec │ │ └── test_get_spec.rb ├── test_credentials │ └── serverspec │ │ └── test_credentials_spec.rb ├── test_get │ └── serverspec │ │ └── test_get_spec.rb └── test_virtualenv │ └── serverspec │ └── test_virtualenv_spec.rb └── shared └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/.gitignore -------------------------------------------------------------------------------- /.kitchen.docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/.kitchen.docker.yml -------------------------------------------------------------------------------- /.kitchen.ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/.kitchen.ec2.yml -------------------------------------------------------------------------------- /.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/.kitchen.yml -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/Berksfile -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/Rakefile -------------------------------------------------------------------------------- /attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/attributes/default.rb -------------------------------------------------------------------------------- /chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/chefignore -------------------------------------------------------------------------------- /libraries/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/libraries/matchers.rb -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/metadata.rb -------------------------------------------------------------------------------- /providers/aws_credentials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/providers/aws_credentials.rb -------------------------------------------------------------------------------- /providers/aws_s3_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/providers/aws_s3_file.rb -------------------------------------------------------------------------------- /recipes/_aws_linux.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/recipes/_aws_linux.rb -------------------------------------------------------------------------------- /recipes/_aws_windows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/recipes/_aws_windows.rb -------------------------------------------------------------------------------- /recipes/awscli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/recipes/awscli.rb -------------------------------------------------------------------------------- /recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/recipes/default.rb -------------------------------------------------------------------------------- /resources/aws_credentials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/resources/aws_credentials.rb -------------------------------------------------------------------------------- /resources/aws_s3_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/resources/aws_s3_file.rb -------------------------------------------------------------------------------- /spec/unit/recipes/_aws_linux_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/spec/unit/recipes/_aws_linux_spec.rb -------------------------------------------------------------------------------- /spec/unit/recipes/_aws_windows_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/spec/unit/recipes/_aws_windows_spec.rb -------------------------------------------------------------------------------- /spec/unit/recipes/awscli_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/spec/unit/recipes/awscli_spec.rb -------------------------------------------------------------------------------- /spec/unit/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/spec/unit/spec_helper.rb -------------------------------------------------------------------------------- /templates/default/credentials.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/templates/default/credentials.erb -------------------------------------------------------------------------------- /test/fixtures/cookbooks/node_dump/metadata.rb: -------------------------------------------------------------------------------- 1 | name 'node_dump' 2 | -------------------------------------------------------------------------------- /test/fixtures/cookbooks/node_dump/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/test/fixtures/cookbooks/node_dump/recipes/default.rb -------------------------------------------------------------------------------- /test/fixtures/cookbooks/test_credentials/metadata.rb: -------------------------------------------------------------------------------- 1 | name 'test_credentials' 2 | depends 'cloudcli' 3 | -------------------------------------------------------------------------------- /test/fixtures/cookbooks/test_credentials/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/test/fixtures/cookbooks/test_credentials/recipes/default.rb -------------------------------------------------------------------------------- /test/fixtures/cookbooks/test_get/metadata.rb: -------------------------------------------------------------------------------- 1 | name 'test_get' 2 | depends 'cloudcli' 3 | -------------------------------------------------------------------------------- /test/fixtures/cookbooks/test_get/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/test/fixtures/cookbooks/test_get/recipes/default.rb -------------------------------------------------------------------------------- /test/fixtures/cookbooks/test_get/recipes/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/test/fixtures/cookbooks/test_get/recipes/profile.rb -------------------------------------------------------------------------------- /test/fixtures/cookbooks/test_virtualenv/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/test/fixtures/cookbooks/test_virtualenv/metadata.rb -------------------------------------------------------------------------------- /test/fixtures/cookbooks/test_virtualenv/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/test/fixtures/cookbooks/test_virtualenv/recipes/default.rb -------------------------------------------------------------------------------- /test/integration/default/serverspec/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/test/integration/default/serverspec/default_spec.rb -------------------------------------------------------------------------------- /test/integration/profile_test_get/serverspec/test_get_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/test/integration/profile_test_get/serverspec/test_get_spec.rb -------------------------------------------------------------------------------- /test/integration/test_credentials/serverspec/test_credentials_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/test/integration/test_credentials/serverspec/test_credentials_spec.rb -------------------------------------------------------------------------------- /test/integration/test_get/serverspec/test_get_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/test/integration/test_get/serverspec/test_get_spec.rb -------------------------------------------------------------------------------- /test/integration/test_virtualenv/serverspec/test_virtualenv_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/test/integration/test_virtualenv/serverspec/test_virtualenv_spec.rb -------------------------------------------------------------------------------- /test/shared/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmlicata/cloudcli-cookbook/HEAD/test/shared/spec_helper.rb --------------------------------------------------------------------------------