{"id":30623391,"url":"https://github.com/howdoicomputer/terrashovel","last_synced_at":"2026-05-08T15:13:33.146Z","repository":{"id":64306772,"uuid":"94084499","full_name":"howdoicomputer/terrashovel","owner":"howdoicomputer","description":"A terraform module scaffolder.","archived":false,"fork":false,"pushed_at":"2017-11-17T19:10:32.000Z","size":5687,"stargazers_count":4,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-11-16T02:00:22.046Z","etag":null,"topics":["aws","awspec","infrastructure","kitchen","terraform"],"latest_commit_sha":null,"homepage":null,"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/howdoicomputer.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}},"created_at":"2017-06-12T10:33:50.000Z","updated_at":"2019-09-17T11:03:28.000Z","dependencies_parsed_at":"2023-01-15T10:45:27.630Z","dependency_job_id":null,"html_url":"https://github.com/howdoicomputer/terrashovel","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/howdoicomputer/terrashovel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/howdoicomputer%2Fterrashovel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/howdoicomputer%2Fterrashovel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/howdoicomputer%2Fterrashovel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/howdoicomputer%2Fterrashovel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/howdoicomputer","download_url":"https://codeload.github.com/howdoicomputer/terrashovel/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/howdoicomputer%2Fterrashovel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272873577,"owners_count":25007569,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-30T02:00:09.474Z","response_time":77,"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":["aws","awspec","infrastructure","kitchen","terraform"],"created_at":"2025-08-30T16:14:28.098Z","updated_at":"2026-05-08T15:13:28.107Z","avatar_url":"https://github.com/howdoicomputer.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# About\n\nTerrashovel is a very small CLI that scaffolds out a Terraform module.\n\n# Installation\n\nIf you have Go installed and setup:\n\n`go get -u github.com/howdoicomputer/terrashovel`\n\nOtherwise, grab the [latest release](https://github.com/howdoicomputer/terrashovel/releases) and put it somewhere in your $PATH.\n\n# Usage\n\n```\nterrashovel create tf_test_module\n\ncd tf_test_module\nbundle install\nbundle exec kitchen test\n```\n\nThe scaffolding for the generated module deploys a single t2.micro instance into AWS and includes a single test to verify that the instance exists. The `main.tf` for the module looks like this:\n\n```\ndata \"aws_ami\" \"ubuntu\" {\n  most_recent = true\n\n  filter {\n    name   = \"name\"\n    values = [\"ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-*\"]\n  }\n\n  filter {\n    name   = \"virtualization-type\"\n    values = [\"hvm\"]\n  }\n\n  owners = [\"099720109477\"] # Canonical\n}\n\nresource \"aws_instance\" \"foo\" {\n  instance_type = \"t2.micro\"\n  ami           = \"${data.aws_ami.ubuntu.id}\"\n\n  tags {\n    Name    = \"${var.name}\"\n    Testing = \"${var.testing}\"\n  }\n}\n```\n\nIn a future release, I'll be moving all *working* code into files that are only generated under a `--generate-example` flag and having the default scaffolding generate non-functional, empty files.\n\n# Assumptions\n\nThe test suite used to validate created infrastructure is written in Ruby. While not a requirement for Terrashovel per se, a Ruby environment is required to install and run the suite (`bundle exec kitchen test`). To satisfy that requirement, I recommend [RVM](https://rvm.io/).\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhowdoicomputer%2Fterrashovel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhowdoicomputer%2Fterrashovel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhowdoicomputer%2Fterrashovel/lists"}