{"id":39035607,"url":"https://github.com/cloudback/terraform-provider-cloudback","last_synced_at":"2026-04-25T23:04:47.429Z","repository":{"id":281549651,"uuid":"926215210","full_name":"cloudback/terraform-provider-cloudback","owner":"cloudback","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":"2026-01-14T19:43:59.000Z","size":146,"stargazers_count":8,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-14T23:37:34.353Z","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/cloudback.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-02-02T20:19:05.000Z","updated_at":"2026-01-14T19:44:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"062719a5-3b27-4c35-a398-121be28a654c","html_url":"https://github.com/cloudback/terraform-provider-cloudback","commit_stats":null,"previous_names":["cloudback/terraform-provider-cloudback"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/cloudback/terraform-provider-cloudback","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudback%2Fterraform-provider-cloudback","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudback%2Fterraform-provider-cloudback/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudback%2Fterraform-provider-cloudback/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudback%2Fterraform-provider-cloudback/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudback","download_url":"https://codeload.github.com/cloudback/terraform-provider-cloudback/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudback%2Fterraform-provider-cloudback/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28513973,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T13:38:16.342Z","status":"ssl_error","status_checked_at":"2026-01-17T13:37:44.060Z","response_time":85,"last_error":"SSL_read: 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-01-17T17:43:52.504Z","updated_at":"2026-01-17T17:43:52.592Z","avatar_url":"https://github.com/cloudback.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%2Fcloudback%2Fterraform-provider-cloudback","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloudback%2Fterraform-provider-cloudback","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudback%2Fterraform-provider-cloudback/lists"}