Stackness
Terraform

Terraform

Infrastructure as code tool for provisioning cloud resources

4 members list Terraform, up 4 in the last 12 weeks, data as of 10 September 2026

Usage on Stackness
4membersup 4 in the last 12 weeks

Members who list Terraform in their Stack, by week.

History
Collected from public datasets outside Stackness, not from stacks on this site. Each series is scaled to its own peak because the units do not compare. Data sources
Mentions, monthly

Hacker News mentions mentions: 3 mentions (2014) to 142 mentions (2026)

20142017202020232026

Imported from Hacker News mentions

Questions asked, monthly

Stack Exchange data explorer questions asked: 1 questions (2015) to 2 questions (2026)

20152018202020232026

Imported from Stack Exchange data explorer

Usage share, yearly

Stack Overflow developer survey usage share: 7.5 % of respondents (2021) to 17.93 % of respondents (2025)

20212022202320242025

Imported from Stack Overflow developer survey

Pageviews, monthly

Wikipedia pageviews pageviews: 55 views (2017) to 6,890 views (2026)

20172019202120242026

Imported from Wikipedia pageviews

M
Marcus Johnson

@marcus_dev

M
Mika Johansson

@gen_rust_ace

A
algoryunov

@algoryunov

Supporter

Moves that use Terraform

I used to write end to end tests for nearly everything. If a user could do it, I automated it in Playwright. The test suite grew to about two hundred scenarios, each one spinning up a browser, navigating through the UI, waiting for async operations to settle, taking screenshots on failure. A single change to a form label could break fifteen tests that had nothing to do with the logic I modified. The feedback loop stretched past ten minutes for each run. I started moving most of those tests down a layer into Vitest integration tests that call my backend handlers directly or render components with realistic fixtures. My end to end tests now cover the paths that would actually shut down the business: user signup, checkout, the core workflow that customers pay for. Everything else lives in tests that run in milliseconds and point directly at the broken function. A concrete example from last month: instead of an end to end test that logs in, navigates to settings, uploads an avatar, waits for the UI to confirm the upload, and takes a screenshot, I now have an integration test that calls my upload handler with a test file, asserts the return value, and another test that verifies the component renders the new avatar URL. Those run in about sixty milliseconds total. The end to end test exists only to confirm the whole flow hangs together maybe once per release. The honest limitation is that integration tests do not catch issues in the actual browser's rendering engine or in third party authentication systems. If your business depends on the visual layout being pixel perfect or on OAuth tokens working exactly as the provider implements them, you still need end to end coverage for those specific paths.

10
See all moves that use Terraform