-
Couldn't load subscription status.
- Fork 14
feat(tags): Onboard new fabric_tag data source and resource #688
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Changelog Previewv1.6.1-dev - October 22, 2025✨ Added
🪲 Fixed
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR introduces new Fabric Tag data source and resource support to the Terraform provider, adding functionality to manage tags within the Microsoft Fabric platform. The implementation includes both single tag and multiple tags data sources, along with a tag resource for CRUD operations.
- Adds
fabric_tagandfabric_tagsdata sources for retrieving tag information - Adds
fabric_tagresource for managing tag lifecycle operations - Includes comprehensive test coverage with both unit and acceptance tests
Reviewed Changes
Copilot reviewed 27 out of 27 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| internal/services/tags/base.go | Defines type information for the Tag resource |
| internal/services/tags/models.go | Contains data models for tag operations and API mappings |
| internal/services/tags/schema_*.go | Schema definitions for both data sources and resource |
| internal/services/tags/data_*.go | Data source implementations for single and multiple tags |
| internal/services/tags/resource_tag.go | Resource implementation with full CRUD operations |
| internal/services/tags/*_test.go | Test files with unit and acceptance tests |
| internal/provider/provider.go | Provider registration for new data sources and resource |
| examples/ | Example configurations for both data sources and resource |
| docs/ | Generated documentation for the new functionality |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
📥 Pull Request
❓ What are you trying to address
Onboard new
fabric_tagsdata source and resource.This closes #678 and #679