Skip to content

Commit

Permalink
Fix Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sbhatnagar-equinix committed Aug 16, 2024
1 parent 0add949 commit 37e170f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions internal/resources/metal/organization/datasource_schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ func dataSourceSchema(ctx context.Context) schema.Schema {
},
"logo": schema.StringAttribute{
DeprecationMessage: "Empty string is the only valid value. Support for this field has been removed from the API",
Description: "**Deprecated** Logo URL",
Computed: true,
Description: "**Deprecated** Logo URL",
Computed: true,
},

"project_ids": schema.ListAttribute{
Expand Down
8 changes: 4 additions & 4 deletions internal/resources/metal/organization/resource_schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ func GetResourceSchema(ctx context.Context) schema.Schema {
},
"logo": schema.StringAttribute{
DeprecationMessage: "The default (empty string) is the only valid value. Support for this field has been removed from the API",
Description: "**Deprecated** Logo URL",
Optional: true,
Computed: true,
Default: stringdefault.StaticString(""),
Description: "**Deprecated** Logo URL",
Optional: true,
Computed: true,
Default: stringdefault.StaticString(""),
},
"created": schema.StringAttribute{
Computed: true,
Expand Down

0 comments on commit 37e170f

Please sign in to comment.