{"id":50497076,"url":"https://github.com/marefr/terraform-provider-cloudinit","last_synced_at":"2026-06-02T08:30:38.884Z","repository":{"id":349312141,"uuid":"1188273636","full_name":"marefr/terraform-provider-cloudinit","owner":"marefr","description":"Terraform provider for generating cloud-init ISO's","archived":false,"fork":false,"pushed_at":"2026-04-05T08:56:39.000Z","size":73,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-05T10:21:43.526Z","etag":null,"topics":["opentofu-provider","terraform-provider"],"latest_commit_sha":null,"homepage":"https://search.opentofu.org/provider/marefr/cloudinit","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/marefr.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null,"notice":"NOTICE.md","maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-03-21T21:13:19.000Z","updated_at":"2026-04-05T08:56:41.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/marefr/terraform-provider-cloudinit","commit_stats":null,"previous_names":["marefr/terraform-provider-cloudinit"],"tags_count":1,"template":false,"template_full_name":"hashicorp/terraform-provider-scaffolding-framework","purl":"pkg:github/marefr/terraform-provider-cloudinit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marefr%2Fterraform-provider-cloudinit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marefr%2Fterraform-provider-cloudinit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marefr%2Fterraform-provider-cloudinit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marefr%2Fterraform-provider-cloudinit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marefr","download_url":"https://codeload.github.com/marefr/terraform-provider-cloudinit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marefr%2Fterraform-provider-cloudinit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33814307,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-02T02:00:07.132Z","response_time":109,"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":["opentofu-provider","terraform-provider"],"created_at":"2026-06-02T08:30:37.312Z","updated_at":"2026-06-02T08:30:38.879Z","avatar_url":"https://github.com/marefr.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Terraform Provider: cloud-init ISO\n\n[![License](https://img.shields.io/github/license/marefr/terraform-provider-cloudinit)](LICENSE)\n[![GitHub release](https://img.shields.io/github/v/release/marefr/terraform-provider-cloudinit)](https://github.com/marefr/terraform-provider-cloudinit/releases)\n[![Terraform Provider Downloads](https://img.shields.io/terraform/provider/dt/1659142)](https://registry.terraform.io/providers/marefr/cloudinit/latest)\n[![CI](https://github.com/marefr/terraform-provider-cloudinit/actions/workflows/test.yml/badge.svg)](https://github.com/marefr/terraform-provider-cloudinit/actions/workflows/test.yml)\n[![Go](https://img.shields.io/github/go-mod/go-version/marefr/terraform-provider-cloudinit)](go.mod)\n[![Go Report Card](https://goreportcard.com/badge/github.com/marefr/terraform-provider-cloudinit)](https://goreportcard.com/report/github.com/marefr/terraform-provider-cloudinit)\n\nA Terraform/Opentofu provider for generating cloud-init ISO images for use with the\n[NoCloud data source](https://docs.cloud-init.io/en/latest/reference/datasources/nocloud.html) and the\n[drive with labeled filesystem](https://docs.cloud-init.io/en/latest/reference/datasources/nocloud.html#source-2-drive-with-labeled-filesystem)\nconfiguration source.\n\nUse this to provision VMs with tools like libvirt, QEMU, Proxmox, or any hypervisor that supports attaching ISO images.\n\n## Installation\n\n```terraform\nterraform {\n  required_providers {\n    cloudinit = {\n      source = \"marefr/cloudinit\"\n    }\n  }\n}\n```\n\n## Usage\n\n```terraform\nresource \"cloudinit_iso\" \"seed\" {\n  name      = \"vm-init\"\n  user_data = file(\"user-data.yaml\")\n  meta_data = yamlencode({\n    instance-id    = \"vm-01\"\n    local-hostname = \"webserver\"\n  })\n}\n```\n\n## Documentation\n\nFull documentation is available on the [Opentofu Registry](https://search.opentofu.org/provider/marefr/cloudinit/latest) and the [Terraform Registry](https://registry.terraform.io/providers/marefr/cloudinit/latest/docs).\n\n## Development\n\n### Commands\n\n- `make install` - Install the provider\n- `make build` - Build the provider\n- `make test` - Run unit tests\n- `make testacc` - Run acceptance tests\n- `make generate` - Generate documentation\n\n### Use of AI\n\nThe author uses AI for this project, but as the maintainer, he owns the outcome and consequences.\n\n## License\n\nApache 2.0 - See [LICENSE](LICENSE).\n\nBased on work from [terraform-provider-libvirt](https://github.com/dmacvicar/terraform-provider-libvirt) - see [NOTICE.md](NOTICE.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarefr%2Fterraform-provider-cloudinit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarefr%2Fterraform-provider-cloudinit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarefr%2Fterraform-provider-cloudinit/lists"}