Skip to content

Commit

Permalink
flip datasource to use typeList instead of typeSet
Browse files Browse the repository at this point in the history
  • Loading branch information
felixlut committed Nov 22, 2024
1 parent 31ac7db commit 10bb6f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion github/data_source_github_repository_custom_properties.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func dataSourceGithubRepositoryCustomProperties() *schema.Resource {
Description: "Name of the repository which the custom properties should be on.",
},
"property": {
Type: schema.TypeSet,
Type: schema.TypeList, // TODO: This should maybe be a TypeSet instead
Computed: true,
Description: "List of custom properties",
Elem: &schema.Resource{
Expand Down

0 comments on commit 10bb6f0

Please sign in to comment.