{"id":39429972,"url":"https://github.com/cloudscale-ch/ansible-collection-cloudscale","last_synced_at":"2026-01-18T04:02:39.000Z","repository":{"id":37961618,"uuid":"261424148","full_name":"cloudscale-ch/ansible-collection-cloudscale","owner":"cloudscale-ch","description":"cloudscale.ch Ansible Collection","archived":false,"fork":false,"pushed_at":"2025-12-16T14:22:44.000Z","size":421,"stargazers_count":7,"open_issues_count":3,"forks_count":6,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-12-20T04:22:22.847Z","etag":null,"topics":["ansible","ansible-collection","cloudscale"],"latest_commit_sha":null,"homepage":"https://galaxy.ansible.com/cloudscale_ch/cloud","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cloudscale-ch.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.rst","contributing":"CONTRIBUTING.md","funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-05-05T10:20:06.000Z","updated_at":"2025-12-16T14:22:46.000Z","dependencies_parsed_at":"2024-01-24T14:30:10.814Z","dependency_job_id":"b3f71e08-4f6b-4661-874c-b7f7ce84d67a","html_url":"https://github.com/cloudscale-ch/ansible-collection-cloudscale","commit_stats":null,"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"purl":"pkg:github/cloudscale-ch/ansible-collection-cloudscale","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudscale-ch%2Fansible-collection-cloudscale","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudscale-ch%2Fansible-collection-cloudscale/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudscale-ch%2Fansible-collection-cloudscale/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudscale-ch%2Fansible-collection-cloudscale/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudscale-ch","download_url":"https://codeload.github.com/cloudscale-ch/ansible-collection-cloudscale/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudscale-ch%2Fansible-collection-cloudscale/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28529455,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T00:39:45.795Z","status":"online","status_checked_at":"2026-01-18T02:00:07.578Z","response_time":98,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ansible","ansible-collection","cloudscale"],"created_at":"2026-01-18T04:02:38.933Z","updated_at":"2026-01-18T04:02:38.985Z","avatar_url":"https://github.com/cloudscale-ch.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n[![Ansible Collection Integration Tests](https://github.com/cloudscale-ch/ansible-collection-cloudscale/actions/workflows/ansible-collection-integration-tests.yml/badge.svg?branch=master)](https://github.com/cloudscale-ch/ansible-collection-cloudscale/actions/workflows/ansible-collection-integration-tests.yml)\n[![Codecov](https://img.shields.io/codecov/c/github/cloudscale-ch/ansible-collection-cloudscale)](https://codecov.io/gh/cloudscale-ch/ansible-collection-cloudscale)\n[![License](https://img.shields.io/badge/license-GPL%20v3.0-brightgreen.svg)](LICENSE)\n\n# Ansible Collection for cloudscale.ch Cloud\n\nThis collection provides a series of Ansible modules and plugins for interacting with the [cloudscale.ch](https://www.cloudscale.ch) Cloud.\n\n## Installation\n\nTo install the collection hosted in Galaxy:\n\n```bash\nansible-galaxy collection install cloudscale_ch.cloud\n```\n\nTo upgrade to the latest version of the collection:\n\n```bash\nansible-galaxy collection install cloudscale_ch.cloud --force\n```\n\n## Usage\n\n### Playbooks\n\nTo use a module from the cloudscale.ch collection, please reference the full namespace, collection name, and modules name that you want to use:\n\n```yaml\n---\n- name: Using cloudscale.ch collection\n  hosts: localhost\n  tasks:\n    - cloudscale_ch.cloud.server:\n        name: web1\n        image: debian-10\n        flavor: flex-2\n        ssh_keys:\n          - ssh-rsa XXXXXXXXXX...XXXX ansible@cloudscale\n        server_groups: web-group\n        zone: lpg1\n        api_token: ...\n```\n\nOr you can add the full namespace and collection name in the `collections` element:\n\n```yaml\n---\n- name: Using cloudscale.ch collection\n  hosts: localhost\n  collections:\n    - cloudscale_ch.cloud\n  tasks:\n    - server:\n        name: web1\n        image: debian-10\n        flavor: flex-2\n        ssh_keys:\n          - ssh-rsa XXXXXXXXXX...XXXX ansible@cloudscale\n        server_groups: web-group\n        zone: lpg1\n        api_token: ...\n```\n\n### Roles\n\nFor existing Ansible roles, please also reference the full namespace, collection name, and modules name that are used in tasks instead of just modules name.\n\n### Plugins\n\nTo use a plugin, please reference the full namespace, collection name, and plugins name that you want to use:\n\n```yaml\nplugin: cloudscale_ch.cloud.\u003cmyplugin\u003e\n```\n\n## Contributing\n\nThere are many ways in which you can participate in the project, for example:\n\n- Submit bugs and feature requests, and help us verify them as they are checked in\n- Review source code changes\n- Review the documentation and make pull requests for anything from typos to new content\n- If you are interested in fixing issues and contributing directly to the code base, please see the [CONTRIBUTING](CONTRIBUTING.md) document.\n\n## Releasing\n\n### Prepare a new release\n\nThe changelog is managed using the `antsibull` tool. You can install\nit using `pip install antsibull`\n\n1. Update version in galaxy.yml\n2. Update changelog using antsibull\n```\nantsibull-changelog release\n```\n3. Commit changelog and new version\n```\ngit commit -m \"Release version X.Y.Z\" galaxy.yml CHANGELOG.rst changelogs/\n```\n4. Tag the release. Preferably create a GPG signed tag if you have a GPG\nkey. Version tags should be prefixed with \"v\" (otherwise the\nintegration tests won't run automatically).\n```\ngit tag -s -m \"Version X.Y.Z\" vX.Y.Z\n```\n5. Push the release and tag\n```\ngit push origin master vX.Y.Z\n```\n\n### Release to Ansible Galaxy\n\nAfter the release is tagged and pushed to Github a release to Ansible\nGalaxy can be created using the release feature in Github:\n\n1. **Wait for integration tests to succeed. They should automatically\nrun on new tags.** Only release if they succeed. Otherwise delete the\ntag and fix the issue.\n2. Create a release on Github by going to the release overview and\n   selecting \"Draft a new release\".\n\n## License\n\nGNU General Public License v3.0\n\nSee [COPYING](COPYING) to see the full text.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudscale-ch%2Fansible-collection-cloudscale","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloudscale-ch%2Fansible-collection-cloudscale","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudscale-ch%2Fansible-collection-cloudscale/lists"}