{"id":28923778,"url":"https://github.com/meshcloud/terraform-provider-meshstack","last_synced_at":"2026-02-16T12:26:09.827Z","repository":{"id":207747891,"uuid":"719950080","full_name":"meshcloud/terraform-provider-meshstack","owner":"meshcloud","description":null,"archived":false,"fork":false,"pushed_at":"2026-02-09T11:03:30.000Z","size":15613,"stargazers_count":5,"open_issues_count":6,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-09T16:01:13.035Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/meshcloud.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":"2023-11-17T08:52:12.000Z","updated_at":"2026-02-09T11:03:34.000Z","dependencies_parsed_at":"2025-12-11T15:01:32.581Z","dependency_job_id":null,"html_url":"https://github.com/meshcloud/terraform-provider-meshstack","commit_stats":null,"previous_names":["meshcloud/terraform-provider-meshstack"],"tags_count":39,"template":false,"template_full_name":"hashicorp/terraform-provider-scaffolding-framework","purl":"pkg:github/meshcloud/terraform-provider-meshstack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meshcloud%2Fterraform-provider-meshstack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meshcloud%2Fterraform-provider-meshstack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meshcloud%2Fterraform-provider-meshstack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meshcloud%2Fterraform-provider-meshstack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/meshcloud","download_url":"https://codeload.github.com/meshcloud/terraform-provider-meshstack/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meshcloud%2Fterraform-provider-meshstack/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29297104,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-10T09:11:24.369Z","status":"ssl_error","status_checked_at":"2026-02-10T09:10:47.789Z","response_time":65,"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":[],"created_at":"2025-06-22T09:40:25.192Z","updated_at":"2026-02-10T10:14:32.738Z","avatar_url":"https://github.com/meshcloud.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# meshStack Terraform Provider\n\nThis is the repository for the meshStack Terraform Provider, which allows one to use Terraform with meshStack by meshcloud. Learn more about meshcloud at https://www.meshcloud.io. This provider is officially registered and documented under [terraform registry](https://registry.terraform.io/providers/meshcloud/meshstack/latest/docs).\n\nFor general information about Terraform, visit the [official website](https://www.terraform.io).\n\n## Support, Bugs, Feature Requests\n\nPlease submit support questions via email to support@meshcloud.io. Support questions submitted under the Issues section of this repo will be handled on a \"best effort\" basis.\n\nFeature requests can be submitted at [canny.io](https://meshcloud.canny.io).\n\n## Local Development\n\nTo use the provider locally during development place the following in `~/.terraformrc`:\n\n```\nprovider_installation {\n\n  dev_overrides {\n      \"meshcloud/meshstack\" = \"\u003cGOBIN\u003e\",\n      \"registry.terraform.io/meshcloud/meshstack\" = \"\u003cGOBIN\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\nReplace `\u003cGOBIN\u003e` with the output of `go env GOBIN` or `go env GOPATH` + `/bin`.\nRun `go install` to update your local provider installation.\nIf everything is working correctly Terraform will show a warning that dev overrides are being used.\n\nNote: `task` is also available via `nix`, for example\n```bash\nnix develop --command task testacc\n```\n\nDebugging can be enabled by setting `TF_LOG=DEBUG` or `TF_ACC_LOG=DEBUG` (when running tests), \nwhich shows all full HTTP request and response communication.\n\n## Running Tests\n\nThis project uses [Task](https://taskfile.dev) for common development workflows. \nThe available tasks can be found in `Taskfile.yml`.\n\n### Acceptance Tests\n\nAcceptance tests run against a real meshStack API and require environment variables to be configured in a `.env` file:\n\n```bash\n# Run all acceptance tests\ntask testacc\n\n# Run specific acceptance test(s) by name pattern\ntask testacc -- -run=BuildingBlockDefinition\n\n# Run multiple specific tests\ntask testacc -- -run=BuildingBlock|Workspace\n```\n\n### Unit Tests\n\n```bash\n# Run unit tests only (excludes acceptance tests)\ntask test\n\n# Run specific unit test(s)\ntask test -- -run=TestValidation\n```\n\n### Other Development Tasks\n\n```bash\n# Build the provider\ntask build\n\n# Install provider locally\ntask install\n\n# Run linter (also checks formatting)\ntask lint\n\n# Fix formatting and linting issues\ntask lint -- --fix\n\n# Generate documentation\ntask generate\n\n# Clean build artifacts\ntask clean\n```\n\n## Code Formatting\n\nThis project uses golangci-lint with the gci formatter to enforce consistent import ordering:\n\n1. Go standard library imports\n2. External dependencies (third-party packages)\n3. Local modules (this repository's packages)\n\nEach section is separated by a blank line. To format your code, run:\n\n```bash\ntask lint -- --fix\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeshcloud%2Fterraform-provider-meshstack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeshcloud%2Fterraform-provider-meshstack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeshcloud%2Fterraform-provider-meshstack/lists"}