Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Anton Tolchanov <[email protected]>
  • Loading branch information
markwellis and knyar authored Nov 20, 2023
1 parent 631e54a commit fb9ccd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tailscale/data_source_acl.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
func dataSourceACL() *schema.Resource {
return &schema.Resource{
Description: "The acl data source gets the Tailscale ACL for a tailnet",
ReadContext: dataSourceAclRead,
ReadContext: dataSourceACLRead,
Schema: map[string]*schema.Schema{
"json": {
Computed: true,
Expand Down
2 changes: 1 addition & 1 deletion tailscale/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func Provider(options ...ProviderOption) *schema.Provider {
"tailscale_device": dataSourceDevice(),
"tailscale_devices": dataSourceDevices(),
"tailscale_4via6": dataSource4Via6(),
"tailscale_acl": dataSourceAcl(),
"tailscale_acl": dataSourceACL(),
},
}

Expand Down

0 comments on commit fb9ccd1

Please sign in to comment.