{"id":15176591,"url":"https://github.com/squat/terraform-provider-saladcloud","last_synced_at":"2026-02-26T23:31:40.773Z","repository":{"id":206400171,"uuid":"716546805","full_name":"squat/terraform-provider-saladcloud","owner":"squat","description":"Terraform Provider for SaladCloud","archived":false,"fork":false,"pushed_at":"2023-12-28T21:08:26.000Z","size":218,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-01T06:02:51.797Z","etag":null,"topics":["salad","saladcloud","terraform","terraform-provider"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/squat.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2023-11-09T11:13:20.000Z","updated_at":"2025-02-23T01:59:13.000Z","dependencies_parsed_at":null,"dependency_job_id":"a5fbde44-9f4d-463e-9237-2297398d8483","html_url":"https://github.com/squat/terraform-provider-saladcloud","commit_stats":null,"previous_names":["squat/terraform-provider-saladcloud"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/squat/terraform-provider-saladcloud","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/squat%2Fterraform-provider-saladcloud","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/squat%2Fterraform-provider-saladcloud/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/squat%2Fterraform-provider-saladcloud/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/squat%2Fterraform-provider-saladcloud/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/squat","download_url":"https://codeload.github.com/squat/terraform-provider-saladcloud/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/squat%2Fterraform-provider-saladcloud/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29876924,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-26T22:37:10.609Z","status":"ssl_error","status_checked_at":"2026-02-26T22:37:09.019Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["salad","saladcloud","terraform","terraform-provider"],"created_at":"2024-09-27T13:21:37.056Z","updated_at":"2026-02-26T23:31:40.748Z","avatar_url":"https://github.com/squat.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SaladCloud Terraform Provider\n\nThe Terraform provider for SaladCloud enables the declarative management of resources in [SaladCloud](https://salad.com/).\n\n[![Build Status](https://github.com/squat/terraform-provider-saladcloud/workflows/CI/badge.svg)](https://github.com/squat/terraform-provider-saladcloud/actions?query=workflow%3ACI)\n\n\u003c!-- Start SDK Installation [installation] --\u003e\n## SDK Installation\n\nTo install this provider, copy and paste this code into your Terraform configuration. Then, run `terraform init`.\n\n```hcl\nterraform {\n  required_providers {\n    saladcloud = {\n      source  = \"squat/saladcloud\"\n      version = \"0.3.0\"\n    }\n  }\n}\n\nprovider \"saladcloud\" {\n  # Configuration options\n  api_key = \"some_saladcloud_api_key\"\n}\n```\n\u003c!-- End SDK Installation [installation] --\u003e\n\n\n\n\u003c!-- Start SDK Example Usage [usage] --\u003e\n## SDK Example Usage\n\n### Testing the provider locally\n\nShould you want to validate a change locally, the `--debug` flag allows you to execute the provider against a terraform instance locally.\n\nThis also allows for debuggers (e.g. delve) to be attached to the provider.\n\n### Example\n\n```sh\ngo run main.go --debug\n# Copy the TF_REATTACH_PROVIDERS env var\n# In a new terminal\ncd examples/your-example\nTF_REATTACH_PROVIDERS=... terraform init\nTF_REATTACH_PROVIDERS=... terraform apply\n```\n\u003c!-- End SDK Example Usage [usage] --\u003e\n\n\n\n\u003c!-- Start Available Resources and Operations [operations] --\u003e\n## Available Resources and Operations\n\n\n\u003c!-- End Available Resources and Operations [operations] --\u003e\n\n\u003c!-- Placeholder for Future Speakeasy SDK Sections --\u003e\n\nTerraform allows you to use local provider builds by setting a `dev_overrides` block in a configuration file called `.terraformrc`. This block overrides all other configured installation methods.\n\nTerraform searches for the `.terraformrc` file in your home directory and applies any configuration settings you set.\n\n```\nprovider_installation {\n\n  dev_overrides {\n      \"squat/saladcloud\" = \"\u003cPATH\u003e\"\n  }\n\n  # For all other providers, install them directly from their origin provider\n  # registries as normal. If you omit this, Terraform will _only_ use\n  # the dev_overrides block, and so no other providers will be available.\n  direct {}\n}\n```\n\nYour `\u003cPATH\u003e` may vary depending on how your Go environment variables are configured. Execute `go env GOBIN` to set it, then set the `\u003cPATH\u003e` to the value returned. If nothing is returned, set it to the default location, `$HOME/go/bin`.\n\n### Generation\n\nThis project is generated using [Speakeasy](https://github.com/speakeasy-api/speakeasy).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsquat%2Fterraform-provider-saladcloud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsquat%2Fterraform-provider-saladcloud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsquat%2Fterraform-provider-saladcloud/lists"}