provider-resources
Implement Terraform Provider resources and data sources using the Plugin Framework
Developer Setup
Setup & Installation
npx skills add https://github.com/hashicorp/agent-skills --skill provider-resourcesnpx skills add https://github.com/hashicorp/agent-skills --skill provider-resourcesOverview
What This Skill Does
Implements Terraform Provider resources and data sources using the Plugin Framework. Covers CRUD operations, schema design, state management, and acceptance testing for provider resources. Targets Go developers building or maintaining Terraform providers.
Application
When to use this Skill
- Configuring integration settings for custom agent workflows.
- Optimizing query execution and response latency in production.
- Developing clean, standard-compliant implementations for enterprise services.
- Troubleshooting connection timeouts and authentication handshakes.
- Monitoring API rate limits and execution pipelines programmatically.
Documentation
Show Skills.md file
Terraform Provider Resources Implementation Guide
Overview
This guide covers developing Terraform Provider resources and data sources using the Terraform Plugin Framework. Resources represent infrastructure objects that Terraform manages through Create, Read, Update, and Delete (CRUD) operations.
References:
File Structure
Resources follow the standard service package structure:
internal/service/<service>/
├── <resource_name>.go # Resource implementation
├── <resource_name>_test.go # Acceptance tests
├── <resource_name>_data_source.go # Data source (if applicable)
├── find.go # Finder functions
├── exports_test.go # Test exports
└── service_package_gen.go # Auto-generated registration
Recommendations
Explore other random skills
frontend-skill
Create visually strong landing pages, websites, and app UIs with restrained composition
playwright-interactive
Persistent browser and Electron interaction via js_repl for iterative UI debugging
slides
Create and edit .pptx presentation decks with PptxGenJS