{"id":49983410,"url":"https://github.com/arxange1/terraform-provider-cloudback2","last_synced_at":"2026-05-18T17:16:56.832Z","repository":{"id":305410714,"uuid":"1022803211","full_name":"arxange1/terraform-provider-cloudback2","owner":"arxange1","description":"The Cloudback Terraform Provider allows you to define and automate your repository backup configurations directly in your Terraform scripts","archived":false,"fork":false,"pushed_at":"2025-07-19T21:57:57.000Z","size":113,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-20T00:50:52.911Z","etag":null,"topics":["backup-solution","cloudback","data-protection","terraform","terraform-provider"],"latest_commit_sha":null,"homepage":"https://registry.terraform.io/providers/cloudback/cloudback","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/arxange1.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-19T21:32:21.000Z","updated_at":"2025-07-19T21:58:04.000Z","dependencies_parsed_at":"2025-07-20T01:04:27.945Z","dependency_job_id":null,"html_url":"https://github.com/arxange1/terraform-provider-cloudback2","commit_stats":null,"previous_names":["arxange1/terraform-provider-cloudback2"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/arxange1/terraform-provider-cloudback2","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arxange1%2Fterraform-provider-cloudback2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arxange1%2Fterraform-provider-cloudback2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arxange1%2Fterraform-provider-cloudback2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arxange1%2Fterraform-provider-cloudback2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arxange1","download_url":"https://codeload.github.com/arxange1/terraform-provider-cloudback2/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arxange1%2Fterraform-provider-cloudback2/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33185083,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T09:27:30.708Z","status":"ssl_error","status_checked_at":"2026-05-18T09:27:28.300Z","response_time":71,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["backup-solution","cloudback","data-protection","terraform","terraform-provider"],"created_at":"2026-05-18T17:16:55.841Z","updated_at":"2026-05-18T17:16:56.824Z","avatar_url":"https://github.com/arxange1.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://app.cloudback.it/badge/cloudback/terraform-provider-cloudback)](https://cloudback.it)\n\n# Cloudback Terraform Provider\n\n- Website: https://registry.terraform.io/providers/cloudback/cloudback\n\n## Maintainers\n\nThis provider plugin is maintained by the Cloudback team at [Cloudback](https://cloudback.it/).\n\n## Requirements\n\n- [Terraform](https://www.terraform.io/downloads.html) \u003e= 1.0.x\n- [Go](https://golang.org/doc/install) \u003e= 1.22 (to build the provider plugin)\n\n## Usage\n\n```hcl\nterraform {\n  required_providers {\n    cloudback = {\n      source = \"cloudback/cloudback\"\n    }\n  }\n}\n\nprovider \"cloudback\" {\n  endpoint = \"https://app.cloudback.it\"\n  api_key = \"your-api-key\"\n}\n\nresource \"cloudback_backup_definition\" \"example\" {\n  platform = \"GitHub\"                   # Currently only GitHub is supported\n  account = \"your-github-account\"       # The GitHub account that owns the repository\n  repository = \"your-github-repository\" # The repository to backup\n  settings = {\n    enabled = true              # Enable the scheduled automated backup\n    schedule = \"Daily at 6 am\"  # The schedule for the automated backup, see the Cloudback Dashboard for available options\n    storage = \"Your S3 bucket\"  # The storage name to use for the backup, see the Cloudback Dashboard for available options\n    retention = \"Last 30 days\"  # The retention policy for the backup, see the Cloudback Dashboard for available options\n  }\n}\n```\n\n## Building The Provider\n\nClone repository to: `$GOPATH/src/github.com/cloudback/terraform-provider-cloudback`\n\n```sh\n$ mkdir -p $GOPATH/src/github.com/cloudback; cd $GOPATH/src/github.com/cloudback\n$ git clone git@github.com:cloudback/terraform-provider-cloudback\n```\n\nEnter the provider directory and build the provider\n\n```sh\n$ cd $GOPATH/src/github.com/cloudback/terraform-provider-cloudback\n$ make build\n```\n\n## Using the provider\n\nTo use a released provider in your Terraform environment, run\n[`terraform init`](https://www.terraform.io/docs/commands/init.html) and\nTerraform will automatically install the provider. To specify a particular\nprovider version when installing released providers, see the [Terraform\ndocumentation on provider versioning](https://www.terraform.io/docs/configuration/providers.html#version-provider-versions).\n\nRefer to the section below for instructions on how to use a custom-built\nversion of the provider.\n\nFor either installation method, documentation about the provider specific\nconfiguration options can be found on the\n[provider's website](https://www.terraform.io/docs/providers/cloudback/).\n\n## Developing the Provider\n\nIf you wish to work on the provider, you'll first need\n[Go](http://www.golang.org) installed on your machine (version 1.20+ is\n*required*). You'll also need to correctly setup a\n[GOPATH](http://golang.org/doc/code.html#GOPATH), as well as adding\n`$GOPATH/bin` to your `$PATH`.\n\nTo compile the provider, run `make build`. This will build the provider and put\nthe provider binary in the `$GOPATH/bin` directory.\n\n```sh\n$ make build\n...\n$ $GOPATH/bin/terraform-provider-cloudback\n...\n```\n\nTo use the provider binary in a local configuration, create a file called\n`.terraformrc` in your home directory and specify a [development\noverride][tf_docs_dev_overrides] for the `cloudback` provider.\n\n```hcl\nprovider_installation {\n  dev_overrides {\n    \"cloudback/cloudback\" = \"\u003cABSOLUTE PATH TO YOUR GOPATH\u003e/bin/\"\n  }\n}\n```\n\nIn order to test the provider, you can simply run `make test`.\n\n```sh\n$ make test\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farxange1%2Fterraform-provider-cloudback2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farxange1%2Fterraform-provider-cloudback2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farxange1%2Fterraform-provider-cloudback2/lists"}