feat(tags): Onboard new fabric_tag data source and resource#688
Open
CatalinDabuleanu wants to merge 21 commits intomainfrom
Open
feat(tags): Onboard new fabric_tag data source and resource#688CatalinDabuleanu wants to merge 21 commits intomainfrom
CatalinDabuleanu wants to merge 21 commits intomainfrom
Conversation
Contributor
There was a problem hiding this comment.
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.
OrBaubergMicrosoft
approved these changes
Mar 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📥 Pull Request
❓ What are you trying to address
Onboard new
fabric_tagsdata source and resource.This closes #678 and #679