Skip to content
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

Fix fabric resources behavior #263

Merged
merged 6 commits into from
Nov 10, 2022
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions equinix/data_source_ecx_l2_sellerprofile.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ var ecxL2SellerProfileAdditionalInfosDescriptions = map[string]string{
func dataSourceECXL2SellerProfile() *schema.Resource {
return &schema.Resource{
ReadContext: dataSourceECXL2SellerProfileRead,
Description: "Use this data source to get details of Equinix Fabric layer 2 seller profile with a given name and / or organization",
Schema: createECXL2SellerProfileSchema(),
Description: "Use this data source to get details of Equinix Fabric layer 2 seller profile with a given name and / or organization",
Schema: createECXL2SellerProfileSchema(),
}
}

Expand Down
1 change: 1 addition & 0 deletions equinix/data_source_fabric_service_profile.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package equinix

import (
"context"

"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
)
Expand Down
Loading